jQWidgets Forums
Forum Replies Created
-
Author
-
February 27, 2016 at 8:11 pm in reply to: Select all and items on checkbox click Select all and items on checkbox click #81877
hi,
checkChange event is not working, please check.
$(“#SelectAllCompanies”).on(‘checkChange’, function (event) {
alert(“Test”);
});Thanks…
Regards,
MZIt’s exactly as per my requirement…i think i made the right decision by purchasing jqwidgets…Thank you very much Dimitar…
December 21, 2015 at 12:59 pm in reply to: Autocomplete but restrict invalid item Autocomplete but restrict invalid item #79604Thanks a lot Mr. Hristo for giving me the right solution…
December 21, 2015 at 9:13 am in reply to: Autocomplete but restrict invalid item Autocomplete but restrict invalid item #79582hi Hristo,
which property/Method i should apply to remove invalid item which is not there in the combolist?
Dear Peter,
I want exclusively Arctic theme, In document it shows only ‘Energy Blue’ example even this is not working after applying on the Grid.
Regards,
zakstevHi Team,
How can i change Grid’s theme? I would like to apply Arctic theme, I’m trying as per documented
<link rel=”stylesheet” href=”../../jqwidgets/styles/jqx.arctic.css” type=”text/css” />
but its not applying it. Please help.Thanks in advannce.
Regards,
Zakhi Mariya,
From your documentation i tried both examples as shown below.
1) Basic Tree Sample created from UL——–>Worked but without drilldown icons in it it.
2) Basic Tree Sample created by setting the ‘source’ property(option).—–> Not at all working.Please guide me with the right controls!
Regards,
M.ZDear Mariya,
I’m running jqwidgets-ver3.9.1 and all CSS and JS files are referred correctly and data files are also referring correctly and
about the server I’m running Apache Tomcat which is configured and running very fine.Give me the solution on tree control and Grid, If you can solve my problem i will place my order right now.
hi Mariya,
I know that Ajax works only with server or localhost. I’m running local host. As i see only few controls are working on your demo!
hi Team,
Appreciate if you could reply to my problem.
Thanks in advance.Regards,
M.ZControls looks nice, will it work in real time?
<%@ page language=”java” contentType=”text/html; charset=ISO-8859-1″
pageEncoding=”ISO-8859-1″%>
<!DOCTYPE html PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN” “http://www.w3.org/TR/html4/loose.dtd”><html lang=”en”>
<head>
<title id=’Description’>This sample demonstrates how to load Tree Items via Ajax
</title>
<link rel=”stylesheet” href=”D:\css\jqx.base.css” type=”text/css” />
<script type=”text/javascript” src=”D:\js\jquery-1.11.1.min.js”></script>
<script type=”text/javascript” src=”D:\js\demos.js”></script>
<script type=”text/javascript” src=”D:\js\jqxcore.js”></script>
<script type=”text/javascript” src=”D:\js\jqxbuttons.js”></script>
<script type=”text/javascript” src=”D:\js\jqxscrollbar.js”></script>
<script type=”text/javascript” src=”D:\js\jqxpanel.js”></script>
<script type=”text/javascript” src=”D:\js\jqxtree.js”></script>
<script type=”text/javascript” src=”D:\js\jqxexpander.js”></script>
<script type=”text/javascript”>
$(document).ready(function () {
// Create jqxTree
var tree = $(‘#jqxTree’);
var source = null;
$.ajax({
async: false,
url: “ajaxroot.htm”,
success: function (data, status, xhr) {
source = jQuery.parseJSON(data);
}
});
tree.jqxTree({ source: source, height: 300, width: 200 });
tree.on(‘expand’, function (event) {
var label = tree.jqxTree(‘getItem’, event.args.element).label;
var $element = $(event.args.element);
var loader = false;
var loaderItem = null;
var children = $element.find(‘ul:first’).children();
$.each(children, function () {
var item = tree.jqxTree(‘getItem’, this);
if (item && item.label == ‘Loading…’) {
loaderItem = item;
loader = true;
return false
};
});
if (loader) {
$.ajax({
url: loaderItem.value,
success: function (data, status, xhr) {
var items = jQuery.parseJSON(data);
tree.jqxTree(‘addTo’, items, $element[0]);
tree.jqxTree(‘removeItem’, loaderItem.element);
}
});
}
});
});
</script>
</head>
<body class=’default’>
<div id=”jqxTree”>
</div>
</body>
</html> -
AuthorPosts