jQWidgets Forums
Forum Replies Created
-
Author
-
Hi,
If you have additional information I would really appreciated it
Thanks
I see where the total column is computed but How would I make it go back to the server and do a lookup?
March 2, 2019 at 7:24 pm in reply to: Real Time updating of jqxGrid Real Time updating of jqxGrid #104197I think that the addrow demo at https://www.jqwidgets.com/jquery-widgets-demo/demos/jqxgrid/createremoveupdatedata.htm?arctic is pretty close to what I need. What do you think?
Thanks– just what I needed.
I can’t get this to work. Is there a different method for 2018 Widgets?
Thanks for the CSS that helps a lot and yes I’d like to change using a button click. Like the person just logged in and I want to put their name on the toolbar.
Can you give a sample of using CSS? Also if I want to change the text in the tool do I have to regenerate the entire toolbar or can I reference a particular tool?
Hi,
Has any advancement in this area been done? I also need the same functionalityOctober 28, 2016 at 11:43 am in reply to: html formatted text in autocomplete html formatted text in autocomplete #88582I totally appreciate your effort 2 questions.
1. Why does your example only work with the letter “A”
2 How can I use your examples:
renderSelectedItem: function(index, item)
{
var datarecord = data[index];
return datarecord.firstname + ” ” + datarecord.lastname;
},
renderer: function (index, label, value) {
var datarecord = data[index];
var table = ‘<table style=”min-width: 150px;”><tr><td>’ + datarecord.firstname + ” ” + datarecord.lastname + ‘</td></tr><tr><td>’ + datarecord.title + ‘</td></tr></table>’;
return table;
with the AutoComplete jqxInput ?October 27, 2016 at 8:18 pm in reply to: html formatted text in autocomplete html formatted text in autocomplete #88553Thanks for the information but we still are not on the same page. What I’m looking for is like http://cdn.rawgit.com/salmanarshad2000/demos/v1.0.0/jquery-ui-autocomplete/custom-html-in-dropdown.html
or jQuery’s Autocomplete has
http://stackoverflow.com/questions/6618494/jquery-autocomplete-styling-the-extra-data-i-e-description
where the description can take a style sheet.I want to create the descriptions like LinkedIn https://www.linkedin.com/
October 26, 2016 at 12:43 pm in reply to: html formatted text in autocomplete html formatted text in autocomplete #88508Sorry- but I have spent tons of hours looking at every sample before I even posted the original question and still don’t understand how any of this helps. I have created working code using just jQuery autocomplete but I wanted to stay in the jqwidgets family.
You stated (html – .innerText; jquery – .text()) in your original post can you please post some working code.October 25, 2016 at 11:57 am in reply to: html formatted text in autocomplete html formatted text in autocomplete #88472Sorry I don’t understand can you give a little more detail? My code is
$(document).ready(function () {
$.ajax({
type: “POST”,
url: “/xxx.asmx/xxxyyy”,
contentType: “application/json; charset=utf-8”,
dataType: “json”,
beforeSend: function (xhr) {},
success: function (data) {
var source =
{
datatype: “json”,
datafields: [
{ name: ‘LastName’, type: ‘string’ },
{ name: ‘FirstName’, type: ‘string’ }
],
localdata: data.d
};var dataAdapter = new $.jqx.dataAdapter(source, {
loadComplete: function () {
var records = dataAdapter.records;
var length = records.length;},
loadError: function (jqXHR, status, error) {
},
beforeLoadComplete: function (records) {}
});
dataAdapter.dataBind();
$(“#jqxInput”).jqxInput({ source: dataAdapter, placeHolder: “Name:”, displayMember: “LastName”, valueMember: “FirstName”, width: 200, height: 25 });
}
});
});October 25, 2016 at 12:48 am in reply to: html formatted text in autocomplete html formatted text in autocomplete #88454I take that back– it shows nice with the formatted html but when I select a value the raw html shows in the input control. Is it possible to display the formatted HTML but select a basic value without the html code?
October 25, 2016 at 12:43 am in reply to: html formatted text in autocomplete html formatted text in autocomplete #88453I set it up on the server side and it works fine with HTML formatted text
April 29, 2016 at 12:57 pm in reply to: loading ListMenu with JSON loading ListMenu with JSON #84002Even the jqxAngular seems to be hard coded- is there a work around so it can be dynamic? I’m trying to build a listMenu of employees like your demo.
Thanks
-
AuthorPosts