Questions tagged [jquery-easyui]

Easyui is a collection of user-interface plugins based on jQuery.

Resources

About

EasyUI components can either be declared directly within the HTML markup via predefined classes (such as easyui-dialog as an extension to existing classes), or via JavaScript code built on jQuery (such as $('#id').dialog({...});).

The EasyUI framework offers out-of-the-box solutions for common website elements such as dialogs, datagrids or menus. Layout elements include tabs and accordion views (whereby panels can be collapsed, keeping only their title visible). Asynchronous handling via AJAX is also supported.

Use

To use EasyUI elements in a website, the JavaScript http://www.jeasyui.com/easyui/jquery.easyui.min.js needs to be included as well as the jQuery library. It is recommended to use the version of jQuery referred to in the EasyUI documentation (currently 1.7.2.) due to incompatibilities with the most recent versions (e.g. for the EasyUI edatagrid plugin).

419 questions
8
votes
1 answer

How to create a dynamic component from Javascript

I am trying to create a ComboBox in with html and Javascript. So I got to start the idea with this link. MultiSelect Combo (MultiSelect ComboBox) In this link I take all the resources and placed in my local and got the desired result.
David
  • 4,266
  • 8
  • 34
  • 69
5
votes
2 answers

Using jquery easyui, how to create a tab by a link which is in a tab?

Tabs document I would like to create a new tab which from the link that is in a tab . for example, in tab a , there is a link "open tab b" , and it should add a tab b , I tried the way create tab that when the link is not in tab (which is working)…
user782104
  • 13,233
  • 55
  • 172
  • 312
4
votes
3 answers

jqGrid Column Group

can I implement a column group in jqGrid like the jQuery EasyUI library does? You can figure out what I mean by going on the jQuery EasyUI demo web site, and choose Datagrid then Column Group from the left menu. Thanks for helping
Lorenzo
  • 29,081
  • 49
  • 125
  • 222
4
votes
1 answer

JEASYUI data-option max set to variable

I am using JEASYUI for my forms. I have an edit form with a textbox (pqty) and I want to set its max attribute to the value of another textbox (sqty), but I don't know if it's possible. I know you can set it just by using specific number but I need…
xjshiya
  • 915
  • 7
  • 16
  • 44
4
votes
2 answers

Is it possible to use RelayJS and GraphQL without the ReactJS?

I'm trying to figure out if there is a way of using RelayJS and GraphQL without ReactJS. Im quite fond of how those three works in data management and at the same time, im looking forward on using the jeasyUI for the design of my web application.…
Jam
  • 43
  • 4
4
votes
0 answers

easyui datagrid styler columns

I have a datagrid with easyui, i create dynamically the headers since they depend on my database. i have gotten my header right already. this is the json object being passed to the datagrid. [[ {"field": "status","title": "Estatus","align":…
pato.llaguno
  • 741
  • 4
  • 20
4
votes
1 answer

How to get all data from easyui datagrid

I had try to use the getData e.g. data = $("#dg").datagrid("getData");` var total = data.total; (total is 100)` var rows = data.rows; (rows.length is 25)` It can result: the total number is correct like 100 records but the rows return only get the…
Jerry Lee
  • 59
  • 1
  • 6
4
votes
2 answers

remove data from jquery easyui combobox

I'm using the jQuery EasyUI Combobox to present a list of data. Is there any way I can remove a particular line from my jQuery EasyUI combobox list with a jQuery EasyUI function or something?
user765368
  • 19,590
  • 27
  • 96
  • 167
3
votes
1 answer

Uncaught TypeError: $(...).datagrid is not a function

I am trying to make use of EasyUI library. I am having issues getting the Data grid working. I have provided below what I have so far: Header
dark_illusion_909099
  • 1,067
  • 2
  • 21
  • 41
3
votes
1 answer

POST issue with json service using cpprest-sdk, interfacing to jeasyui

I'm developing a web service to serve json objects to a jeasyui async tree. My HTML has the following:
Assume w.x.y.z is my server's IP address. According to…
tsm
  • 61
  • 1
  • 4
3
votes
3 answers

Registering ng-click in Angular after external data is loaded into datagrid

I've been working on building an app in Angular, and one of the key components is a datagrid. I am using the jquery-easyui datagrid which is being populated from a backend script. The issue I'm having is that once the datagrid is loaded, I need to…
3
votes
4 answers

How can I change configuration parameters of jQuery "easy pie chart" plugin?

I am using jQuery easy pie chart plugin for making pie charts. Initially I pass default configuration parameters. After that I want to change configuration parameters like bar-color, size of pie chart. Default configuration parameters:…
user3279058
  • 549
  • 4
  • 7
  • 22
3
votes
1 answer

jQuery EasyUI tabs within tabs and Ajax

Let's say I have some jQuery EasyUI tabs within some other tabs. The inner tabs are loaded via Ajax on click of an outer tab. On click of an inner tab, I want to load some content via Ajax inside the clicked inner tab's panel. The problem I have is…
user765368
  • 19,590
  • 27
  • 96
  • 167
3
votes
3 answers

jQuery EasyUI: confirm/save datagrid inline editing

I am using jquery & EasyUI to create a table from a SQL database. I have managed making some of the columns editable via inline editing following this tutorial, where the possible cell values are given by a combobox. I have a php file for the…
Bernd
  • 675
  • 3
  • 13
  • 23
3
votes
1 answer

How to create a property called "checked"?

I want to use EasyUI jquery tree. So I create a class to use with this jquery tree. Jquery Tree Data Format Example [{ "id":1, "text":"Folder1", "iconCls":"icon-save", "children":[{ "text":"File1", …
AliRıza Adıyahşi
  • 15,658
  • 24
  • 115
  • 197
1
2 3
27 28