Searched +refs:val +refs:parent (Results 1 - 25 of 171) sorted by relevance

1234567

/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/util/
H A DFilterEditor.js61 return {current: node, parent: previousNode, path: objectPath};
66 if (!_.isNull(context.parent)) {
67 context.parent.children = _.reject(context.parent.children, function (c) { return c === context.current; });
68 if (context.parent.children.length !== 0) {
99 node.op = field.val();
112 if (field.parent().siblings(".tag-body").find(".tag").val() === "extensibleMatchAND") {
113 node.extensible.matchType=field.val();
114 node.name = field.val()
[all...]
/forgerock/openidm-v4/openidm-ui/openidm-ui-enduser/src/main/js/config/validators/
H A DSelfServiceValidators.js28 var v = $(input).val();
45 var v = $(input).val();
59 var valueToReplace, date, v = $(input).val(), dateFormat = $(input).parent().find('[name=dateFormat]').val();
71 $(input).val(valueToReplace);
86 var valueToReplace, date, v = $(input).val(), dateFormat = $(input).parent().find('[name=dateFormat]').val();
95 $(input).val(valueToReplac
[all...]
/forgerock/openidm-v4/openidm-ui/openidm-ui-common/src/main/js/org/forgerock/openidm/ui/common/workflow/processes/
H A DStartProcessDashboardView.js65 var parent = $(event.target).parents(".process-item"),
66 id = parent.find('[name="id"]').val(),
67 collapse = parent.find('#processDetails').length;
73 parent.find(".details-link .fa").toggleClass("fa-caret-right", true);
74 parent.find(".details-link .fa").toggleClass("fa-caret-down", false);
80 parent.find(".details-link .fa").toggleClass("fa-caret-right", false);
81 parent.find(".details-link .fa").toggleClass("fa-caret-down", true);
92 $("#processContent [disabled]:hidden").filter(function(){return $(this).siblings(":visible").length === 0;}).parent().hide();
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/mapping/util/
H A DLinkQualifierFilterEditor.js114 if($(currentSelect).val() === "/linkQualifier") {
115 tempValue = parentHolder.find(".value").val();
117 parentHolder.find(".value").val(tempValue);
124 $(currentSelect)[0].selectize.setValue($(currentSelect).val());
137 var value = $(this).val(),
138 parent = $(this).closest(".node");
141 parent.find(".value").replaceWith(_this.createLinkQualifierCombo());
143 parent.find(".value").replaceWith('<input type="text" class="value form-control">');
146 parent.find(".value").trigger("change");
163 tempValue = $(this).val();
[all...]
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/authentication/chains/
H A DLinkView.js43 this.parent.data.form.chainData.authChainConfiguration.splice(this.$el.index(), 1);
44 this.parent.validateChain();
49 this.parent.editItem(this);
58 criteria : selected.val().toLowerCase(),
85 this.data.linkConfig.criteria = this.$el.find("#selectCriteria option:selected").val();
86 this.parent.validateChain();
95 this.parent.validateChain();
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/authentication/chains/
H A DLinkView.js43 this.parent.data.form.chainData.authChainConfiguration.splice(this.$el.index(), 1);
44 this.parent.validateChain();
49 this.parent.editItem(this);
58 criteria : selected.val().toLowerCase(),
85 this.data.linkConfig.criteria = this.$el.find("[data-select-criteria] option:selected").val();
86 this.parent.validateChain();
95 this.parent.validateChain();
/forgerock/openidm-v4/openidm-ui/openidm-ui-common/src/main/js/org/forgerock/openidm/ui/common/workflow/tasks/
H A DTasksMenuView.js49 var id = $(event.target).parents(".list-group-item").find("[name=taskId]").val();
71 var parent = $(event.target).parents(".list-group-item"),
72 id = parent.find("input[name=taskId]").val(),
73 collapse = parent.find('#taskDetails').length,
83 parent.find(".details-link .fa").toggleClass("fa-caret-right", false);
84 parent.find(".details-link .fa").toggleClass("fa-caret-down", true);
118 var userId = $(event.target).next().val(),
120 requesterDisplayName = $(event.target).next().next().val(), user, taskId;
122 taskId = $(event.target).parent()
[all...]
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/authorization/policies/attributes/
H A DStaticResponseAttributesView.js48 val = editing.find("[data-attr-val]"),
51 attr.propertyName = key.val();
52 attr.propertyValues = val.val();
60 val = editing.find("[data-attr-val]");
62 return _.every([key, val], function (input) {
63 return input.val() !== "" && input[0].checkValidity();
73 var data = $(e.currentTarget).parent()
[all...]
/forgerock/openidm-v4/openidm-ui/openidm-ui-common/src/main/js/org/forgerock/openidm/ui/common/util/
H A DJSONEditorSetupUtils.js37 typeSelect = container.parent().parent().find("select");
40 var arrayItemProps = $(this).parent().closest(".row").find(".well:first").find(".row:lt(2)");
42 if ($(this).val() === "Relationship" && type === "type") {
47 if ($(this).val() === "Relationship" && type === "itemType") {
/forgerock/openam-v13/openam-server-only/src/main/webapp/assets/lib/yui/animation/
H A Danimation-debug.js82 * @param {Number} val The value to be applied to the attribute.
85 setAttribute: function(attr, val, unit) {
87 val = (val > 0) ? val : 0;
90 YAHOO.util.Dom.setStyle(this.getEl(), attr, val + unit);
97 * @return {Number} val The current value of the attribute.
101 var val = YAHOO.util.Dom.getStyle(el, attr); variable
103 if (val !== 'auto' && !this.patterns.offsetUnit.test(val)) {
[all...]
H A Danimation-min.js9 this.init(el,attributes,duration,method);};YAHOO.util.Anim.prototype={toString:function(){var el=this.getEl();var id=el.id||el.tagName||el;return("Anim "+id);},patterns:{noNegatives:/width|height|opacity|padding/i,offsetAttribute:/^((width|height)|(top|left))$/,defaultUnit:/width|height|top$|bottom$|left$|right$/i,offsetUnit:/\d+(em|%|en|ex|pt|in|cm|mm|pc)$/i},doMethod:function(attr,start,end){return this.method(this.currentFrame,start,end-start,this.totalFrames);},setAttribute:function(attr,val,unit){if(this.patterns.noNegatives.test(attr)){val=(val>0)?val:0;}
10 YAHOO.util.Dom.setStyle(this.getEl(),attr,val+unit);},getAttribute:function(attr){var el=this.getEl();var val=YAHOO.util.Dom.getStyle(el,attr);if(val!=='auto'&&!this.patterns.offsetUnit.test(val)){return parseFloat(val);} variable
11 var a=this.patterns.offsetAttribute.exec(attr)||[];var pos=!!(a[3]);var box=!!(a[2]);if(box||(YAHOO.util.Dom.getStyle(el,'position')=='absolute'&&pos)){val
[all...]
H A Danimation.js81 * @param {Number} val The value to be applied to the attribute.
84 setAttribute: function(attr, val, unit) {
86 val = (val > 0) ? val : 0;
89 YAHOO.util.Dom.setStyle(this.getEl(), attr, val + unit);
96 * @return {Number} val The current value of the attribute.
100 var val = YAHOO.util.Dom.getStyle(el, attr); variable
102 if (val !== 'auto' && !this.patterns.offsetUnit.test(val)) {
[all...]
/forgerock/openam/openam-server-only/src/main/webapp/assets/lib/yui/animation/
H A Danimation-debug.js82 * @param {Number} val The value to be applied to the attribute.
85 setAttribute: function(attr, val, unit) {
87 val = (val > 0) ? val : 0;
90 YAHOO.util.Dom.setStyle(this.getEl(), attr, val + unit);
97 * @return {Number} val The current value of the attribute.
101 var val = YAHOO.util.Dom.getStyle(el, attr); variable
103 if (val !== 'auto' && !this.patterns.offsetUnit.test(val)) {
[all...]
H A Danimation-min.js9 this.init(el,attributes,duration,method);};YAHOO.util.Anim.prototype={toString:function(){var el=this.getEl();var id=el.id||el.tagName||el;return("Anim "+id);},patterns:{noNegatives:/width|height|opacity|padding/i,offsetAttribute:/^((width|height)|(top|left))$/,defaultUnit:/width|height|top$|bottom$|left$|right$/i,offsetUnit:/\d+(em|%|en|ex|pt|in|cm|mm|pc)$/i},doMethod:function(attr,start,end){return this.method(this.currentFrame,start,end-start,this.totalFrames);},setAttribute:function(attr,val,unit){if(this.patterns.noNegatives.test(attr)){val=(val>0)?val:0;}
10 YAHOO.util.Dom.setStyle(this.getEl(),attr,val+unit);},getAttribute:function(attr){var el=this.getEl();var val=YAHOO.util.Dom.getStyle(el,attr);if(val!=='auto'&&!this.patterns.offsetUnit.test(val)){return parseFloat(val);} variable
11 var a=this.patterns.offsetAttribute.exec(attr)||[];var pos=!!(a[3]);var box=!!(a[2]);if(box||(YAHOO.util.Dom.getStyle(el,'position')=='absolute'&&pos)){val
[all...]
H A Danimation.js81 * @param {Number} val The value to be applied to the attribute.
84 setAttribute: function(attr, val, unit) {
86 val = (val > 0) ? val : 0;
89 YAHOO.util.Dom.setStyle(this.getEl(), attr, val + unit);
96 * @return {Number} val The current value of the attribute.
100 var val = YAHOO.util.Dom.getStyle(el, attr); variable
102 if (val !== 'auto' && !this.patterns.offsetUnit.test(val)) {
[all...]
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/authentication/
H A DAuthActionTiledView.java43 View parent,
47 super(parent, model, name);
118 private boolean containsOption(OptionList optList, String val) { argument
122 bYes = opt.getValue().equals(val);
132 AuthConfigViewBean parent = (AuthConfigViewBean)getParentViewBean();
133 String value = parent.getOptionFieldValue(index);
42 AuthActionTiledView( View parent, CCActionTableModel model, String name ) argument
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/authentication/
H A DAuthActionTiledView.java43 View parent,
47 super(parent, model, name);
118 private boolean containsOption(OptionList optList, String val) { argument
122 bYes = opt.getValue().equals(val);
132 AuthConfigViewBean parent = (AuthConfigViewBean)getParentViewBean();
133 String value = parent.getOptionFieldValue(index);
42 AuthActionTiledView( View parent, CCActionTableModel model, String name ) argument
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/authorization/policies/conditions/
H A DConditionAttrBaseView.js47 if (!target.parent().children("label").length) {
51 propTitle = target.parent().children("label").data().title;
84 firstVal = first.find("input").val();
86 secondVal = second.find("input").val();
H A DOperatorRulesView.js72 this.select.focus().val(value).trigger("change");
80 var item = $(e.currentTarget).parent(),
101 var parent = $(e.target).parent(),
102 dropbox = parent.children("ol.dropbox"),
103 select = dropbox.parent().children("select"),
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/authorization/policies/conditions/
H A DConditionAttrBaseView.js46 if (!target.parent().children("label").length) {
50 propTitle = target.parent().children("label").data().title;
83 firstVal = first.find("input").val();
85 secondVal = second.find("input").val();
H A DOperatorRulesView.js72 this.select.focus().val(value).trigger("change");
80 var item = $(e.currentTarget).parent(),
101 var parent = $(e.target).parent(),
102 dropbox = parent.children("ol.dropbox"),
103 select = dropbox.parent().children("select"),
/forgerock/openidm-v4/openidm-ui/openidm-ui-common/src/main/js/org/forgerock/openidm/ui/common/resource/
H A DGenericEditResourceView.js116 .map(function(val, key) { val.name = key; return val; })
230 _.each(newValue, _.bind(function(val,key) {
232 hasVal = val && val.length;
235 (!relationshipType && (this.oldObject[key] && !_.isEqual(this.oldObject[key], val))) ||
236 (relationshipType && hasVal && !_.isEqual(JSON.parse(val), this.oldObject[key]))
286 $(this).parent().find("label").after(' <i class="fa fa-info-circle info" title="' + $(this).text() + '"/>');
323 formVal[$(element).attr("propname")] = JSON.parse($(element).val());
[all...]
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/base/
H A DAMPropertySheet.java89 // Copying set of constructors from parent class
91 ContainerView parent,
95 super(parent, model, name);
98 public AMPropertySheet(ContainerView parent, String name) { argument
99 super(parent, name);
109 ViewBean parent = getParentViewBean();
121 view = parent.getChild(name);
129 parent, name, values, amModel, model) ||
166 ViewBean parent,
175 String val
90 AMPropertySheet( ContainerView parent, CCPropertySheetModelInterface model, String name ) argument
165 setValuesToMultipleChoices( ViewBean parent, String name, Object values, AMModel amModel, AMPropertySheetModel model ) argument
[all...]
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/base/
H A DAMPropertySheet.java89 // Copying set of constructors from parent class
91 ContainerView parent,
95 super(parent, model, name);
98 public AMPropertySheet(ContainerView parent, String name) { argument
99 super(parent, name);
109 ViewBean parent = getParentViewBean();
121 view = parent.getChild(name);
129 parent, name, values, amModel, model) ||
166 ViewBean parent,
175 String val
90 AMPropertySheet( ContainerView parent, CCPropertySheetModelInterface model, String name ) argument
165 setValuesToMultipleChoices( ViewBean parent, String name, Object values, AMModel amModel, AMPropertySheetModel model ) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMCompliance.java97 * Method which checks all the parent organizations of this entry
126 // Get the parent DN..
127 tdn = DN.valueOf(tdn).parent().toString().toLowerCase();
157 String val = (String) values.iterator().next();
158 enabled = (val.equalsIgnoreCase("true"));
190 return rootDN.equals(objectDN) || rootDN.equals(objectDN.parent());
213 String val = (String) values.iterator().next();
214 enabled = (val.equalsIgnoreCase("true"));

Completed in 121 milliseconds

1234567