Lines Matching refs:find

99                 this.$el.find("#createMapping").prop("disabled", false);
101 this.$el.find("#createMapping").prop("disabled", true);
113 message: this.$el.find("#saveMappingDialog").clone().attr("id","saveMappingDialogClone"),
117 tempName = this.createMappingName(dialogRef.$modalBody.find("#saveMappingDialogClone .mappingName")),
133 dialogRef.$modalBody.find("#saveMappingDialogClone .mappingName").val(mappingName);
137 dialogRef.$modalBody.find("#saveMappingDialogClone .mappingLinked .mapping-linked-option").remove();
140 dialogRef.$modalBody.find("#saveMappingDialogClone .mappingLinked").prop("disabled", false);
143 dialogRef.$modalBody.find("#saveMappingDialogClone .mappingLinked").append("<option class='mapping-linked-option' value='" +link.name +"'>" +link.name +"</option>");
146 dialogRef.$modalBody.find("#saveMappingDialogClone .mappingLinked").prop("disabled", true);
174 "name" : dialogRef.$modalBody.find("#saveMappingDialogClone .mappingName").val(),
232 if (dialogRef.$modalBody.find("#saveMappingDialogClone .mappingLinked").val() !== "none") {
233 tempMapping.links = dialogRef.$modalBody.find("#saveMappingDialogClone .mappingLinked").val();
257 _.find(availableLinks, function(available) {
288 tempObjectType = this.$el.find("#mappingTarget .resource-object-type-select").val().charAt(0).toUpperCase() + this.$el.find("#mappingTarget .resource-object-type-select").val().substring(1);
290 this.targetDetails.saveName = "system/" + this.targetDetails.name +"/" +this.$el.find("#mappingTarget .resource-object-type-select").val();
299 tempObjectType = this.$el.find("#mappingSource .resource-object-type-select").val().charAt(0).toUpperCase() + this.$el.find("#mappingSource .resource-object-type-select").val().substring(1);
301 this.sourceDetails.saveName = "system/" + this.sourceDetails.name +"/" +this.$el.find("#mappingSource .resource-object-type-select").val();
355 this.$el.find("#"+id +" .resource-small-icon").attr('class', "resource-small-icon " +details.iconClass);
357 this.$el.find("#"+id +" .resource-type-name").html(details.displayName);
358 this.$el.find("#"+id +" .resource-given-name").html(details.name);
359 this.$el.find("#"+id +" .edit-objecttype").show();
361 this.$el.find("#"+id +" .object-type-name").hide();
362 this.$el.find("#"+id +" .resource-object-type-select").show();
363 this.$el.find("#"+id +" .resource-object-type-select option").remove();
366 this.$el.find("#"+id +" .resource-object-type-select").append("<option value='"+value +"'>" +value +"</option>");
371 this.$el.find("#" + id + " .resource-small-icon").attr('class', "resource-small-icon " +details.iconClass);
373 this.$el.find("#" + id + " .resource-small-icon").attr('class','resource-small-icon fa ' +details.schema.icon);
376 this.$el.find("#"+id +" .resource-type-name").html($.t("templates.connector.managedObjectType"));
377 this.$el.find("#"+id +" .resource-given-name").html(details.name);
378 this.$el.find("#"+id +" .edit-objecttype").hide();
379 this.$el.find("#"+id +" .object-type-name").show();
380 this.$el.find("#"+id +" .resource-object-type-select").hide();
383 this.$el.find("#"+id +" .mapping-resource").show();
384 this.$el.find("#"+id +" .mapping-resource-empty").hide();
385 this.$el.find("#"+id +" .select-resource").prop("disabled", false);
393 this.$el.find("#" +id +" .mapping-resource-empty").show();
394 this.$el.find("#" +id +" .mapping-resource").hide();
395 this.$el.find("#" +id +" .select-resource").prop("disabled", true);
396 this.$el.find("#createMapping").prop("disabled", true);
409 return !_.find(this.mappingList, function(mapping) {