jQWidgets Forums
Forum Replies Created
-
Author
-
October 25, 2019 at 9:44 am in reply to: jqxValidator rule: how set message with language selected? jqxValidator rule: how set message with language selected? #107146
solved!
var jsonRules = $('#testForm').jqxValidator('rules'); for (var i = 0; i < jsonRules.length; i++) { var message = [new message from a key] jsonRules[i].message = message; } $('#testForm').jqxValidator('rules', jsonRules);
October 12, 2017 at 9:34 am in reply to: jqxButton event only on tablett don't wort jqxButton event only on tablett don't wort #96659Hi Peter
sorry, but on my tablett don’t work
my test is on ipad with safari, I’ve make test also chrome and firefox … does’t work
MDFebruary 9, 2016 at 4:07 pm in reply to: columntype: 'numberinput' allow null problem columntype: 'numberinput' allow null problem #81295
Work fine
Tnk IvoS
February 9, 2016 at 3:04 pm in reply to: columntype: 'numberinput' allow null problem columntype: 'numberinput' allow null problem #81292Tnk Ivo
I’ve try to remove the cells format property, but don’t work
The change is 0 than 0.00 <– I need to view the amount with that propertyI need to set a null the cell value without amount (0 or 0.00)
S
January 25, 2016 at 12:55 pm in reply to: jqxGrid – editing – columntype: 'dropdownlist' jqxGrid – editing – columntype: 'dropdownlist' #80740work fine
thanks
Sha.merci
I’ve simulate my problem, at the select on tree I need to show quickly the wait message
<div id='jqxTree'> <ul> <li item-selected='true'>Home</li> <li item-expanded='true'>Solutions <ul> <li>Education</li> <li>Financial services</li> <li>Government</li> <li>Manufacturing</li> <li>Solutions <ul> <li>Consumer photo and video</li> <li>Mobile</li> <li>Rich Internet applications</li> <li>Technical communication</li> <li>Training and eLearning</li> <li>Web conferencing</li> </ul> </li> <li>All industries and solutions</li> </ul> </li> </ul> </div> <div id='test' style='display:none;'>wait</div>
$('#jqxTree').jqxTree({ height: '300px', width: '300px', theme: 'energyblue' }); $('#jqxTree').on('select', function (event) { $("#test").show(); uty_sleep(5000) }); function uty_sleep(delay) { var start = new Date().getTime(); while (new Date().getTime() < start + delay); }
I’ve try with the click, but work after the select
can I help me?Shardik
<div id='jqxTree'> <ul> <li item-selected='true'>Home</li> <li item-expanded='true'>Solutions <ul> <li>Education</li> <li>Financial services</li> <li id="government">Government</li> <li>Manufacturing</li> <li>Solutions <ul> <li>Consumer photo and video</li> <li>Mobile</li> </ul> </li> <li>All industries and solutions</li> </ul> </li> </ul> </div> <input type="button" style="margin: 10px;" id="jqxbutton" value="Select 'Government'" />
`$(‘#jqxTree’).jqxTree({
height: ‘100px’,
width: ‘300px’,
theme: ‘energyblue’});
$(“#jqxbutton”).jqxButton({
theme: ‘energyblue’,
width: 200,
height: 30
});
$(‘#jqxbutton’).click(function () {
$(“#jqxTree”).jqxTree(‘selectItem’, $(“#government”)[0]);
});`January 29, 2014 at 6:58 am in reply to: Validator message – multiline Validator message – multiline #48564nobody can help me?
In this sample
http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxcombobox/defaultfunctionality.htm?arctic
I need that when the combo takes the focus, the text ‘avatar’ must be selected as when I double-click
Shardiktank Pater,
But with setcellvalue I change the value but not the display (it was alwais undefined)On function render I set a tag html element, in this topic can’t view the source
The tag is a tag span with some attribute
I add on this tag the id attribute and when I need to change the color I use jquery to get the element
S
merci
Tank dimitar,
with this sample the result is:
->group 1
->All
->group 2
->item 1
->item 2
->item 3
->group 3
->item 1
->item 2i’ve tried this solution
Is’t possibile see the item ‘all’ without even group?Shardik
July 11, 2013 at 8:04 am in reply to: Save and load show and hide, Reorder and resize column Save and load show and hide, Reorder and resize column #25002:p
var state = $(“#jqxGrid”).jqxGrid(‘savestate’);
$(“#jqxGrid”).jqxGrid(‘loadstate’, state);July 3, 2013 at 11:48 am in reply to: Set selected row without rowindex Set selected row without rowindex #24401Solved
var idsSelected =”2,4″;
var ids = idsSelected.split(“,”);
for (var i = 0; i < ids.length; i++) {
var rows = $('#jqxgrid').jqxGrid('getrows');
for (var y = 0; y < rows.length; y++) {
var rowData = rows[y];
if (rowData.idPartner == ids[i]) {
$("#jqxgrid").jqxGrid('selectrow', y);
}
}
} -
AuthorPosts