jQWidgets Forums
Forum Replies Created
-
Author
-
Hi
ANy how it works fine if i remove surrounding form tag …
<form id=’createForm’ enctype=”multipart/form-data”>
I will continue working on as you advised above.
Thanks
HI
Any help ?
Thanks
February 25, 2014 at 2:08 pm in reply to: click enable on particular nodes click enable on particular nodes #50105Hi
How about “event”, like event.args.element ?
Thanks
February 25, 2014 at 2:06 pm in reply to: click enable on particular nodes click enable on particular nodes #50104sorry, found them.
February 25, 2014 at 2:05 pm in reply to: click enable on particular nodes click enable on particular nodes #50103Many thanks.
But those mentioned properties are not found in API section, like item.parentElement ?
Thanks
Hi
here is code ..
$(‘#jqxWidgetTree’).on(‘select’, function (event) {
var args = event.args;
var e = event.args.element;var item = $(‘#jqxWidgetTree’).jqxTree(‘getItem’, args.element);
$(‘#jqxWidgetTree’).jqxTree(‘selectItem’, e);if(item.level == 2) {
alert(item.id + ” ; ” + item.parentid + “;” + item.value + “;” + item.label);
}
});every time when i expand node, cursor position to top of tree, but i would like to stay at same place where node opened.
I am displaying tree in a window as modal.
Thanks
February 25, 2014 at 1:43 pm in reply to: click enable on particular nodes click enable on particular nodes #50100Hi
many thanks.
perfect it works.
But please help me where i can find more documentation like item.level and other possible attributes on “item” and “element” ?
Thanks
Hi
I am displaying tree in window and when i expand tree, cursor always goes to top node of tree rather than at opened node.let’s say when i scroll all the way down to the tree and then expand takes me to higher position.
Thanks
That works, thanks
but having a issue with scrolling, let’s say scroll bar appears, i scrolled down and expand an item, then the position goes to top, not at current position. So user have to scroll all the way down to look at expand item.
it’s “json” binding.
Any thought ?
Thanks
HI
It was like
$(‘#journeyDate’).val(new Date(2014, 02, 20));
$(“#journeyDate”).jqxDateTimeInput( {closeCalendarAfterSelection : true,width:’125px’,height:’20px’,theme : theme,formatString:’d/M/yyyy’});
Still setting it as “20/3/2014”
Anything worng in above code ?
Thanks
HI
I did like
<div id=”windowHeader” style=’display:none;’></div>
February 18, 2014 at 7:05 am in reply to: two buttons with one validator two buttons with one validator #49655HI
Do you mind to provide sample code of having rules as a function and calling like rules : validation() ?
Thanks
February 17, 2014 at 7:42 am in reply to: localization of two grids on same page localization of two grids on same page #49609HI
Do you have a sample to look at it ?
Thanks
February 17, 2014 at 7:42 am in reply to: two buttons with one validator two buttons with one validator #49608Hi,
tried that as well, some how doesn;t work.
rules : validation()
Thanks
February 16, 2014 at 4:14 pm in reply to: two buttons with one validator two buttons with one validator #49583Hi
Below solution doesn’t work ..
Main aim is .. having one form with 5 fields, click on “Button1” should look for all fields mandatory and “Button2” click should validate 3 fields
function validation(){
if(buttonFlag == 0){ validationRules = [……] }
else if(buttonFlag == 1){ validationRules = [……] }
return validationRules;
}$(‘#orderForm’).jqxValidator({
rules : validation
});Thanks
-
AuthorPosts