EasyUI Forum
May 03, 2024, 08:08:10 PM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News:
 
  Home Help Search Login Register  
  Show Posts
Pages: [1] 2 3
1  General Category / EasyUI for jQuery / Re: colorpicker in propertygrid on: March 10, 2017, 02:41:12 AM
Any clues?
2  General Category / EasyUI for jQuery / Re: colorpicker in propertygrid on: March 05, 2017, 08:21:18 AM
Hey that's very nice! Smiley

But... how do I use this color box in a propertygrid? The example uses a class, while the propertygrid expects an editor property?
3  General Category / EasyUI for jQuery / colorpicker in propertygrid on: February 26, 2017, 03:30:52 AM
Hello,

I'm would like to have a colorpicker available as a row in a propertygrid. Is there a way to achieve this?

Cheers,
Jeroen
4  General Category / EasyUI for jQuery / multiselect in tree on: December 24, 2016, 03:34:25 AM
Hi there,

Is it possible to have multiselect using ctrl or shift in a tree (not a treegrid)?

Cheers,
Jeroern
5  General Category / EasyUI for jQuery / Re: checkbox rendering on: March 13, 2016, 04:23:23 AM
Nice example! I changed the check on "FrequentBuyer" to

if (row.editor && row.editor.type === 'checkbox') {

}

and it works in my scenario too. Thanks! Smiley
6  General Category / EasyUI for jQuery / Re: checkbox rendering on: March 12, 2016, 12:18:24 AM
I have a propertygrid in which I want to show+edit properties of an object. That object has multiple boolean values which I want to set using a checkbox editor. I got that working using the checkbox editor. When I -edit- the cell, I see a checkbox.

But when I leave the cell, the checkbox disappears and the cell displays the boolean value (so either true or false) as plain text in the propertygrid. This is not wanted. I want to see checkboxes for all boolean properties all the time, whether I'm editing or not.

Thanks for getting into this - if you need more info, let me know!
7  General Category / EasyUI for jQuery / Re: checkbox rendering on: March 11, 2016, 10:45:29 AM
This does not show a normal propertygrid.  Sad According to the documentation some data is mandatory for propertygrid data and the example here does not provide for that?

Can you provide a working example of getting a checkbox working in propertygrid?
8  General Category / EasyUI for jQuery / checkbox rendering on: March 05, 2016, 01:14:59 AM
Hello,

I have a checkbox in a propertygrid. When the row is selected, I see a checkbox I can check on or off. When the row is not selected, I see the value in text (either true or false in my case). I want to see a checkbox all the time, whether the row is selected or not.

How can I achieve that?

Cheers,
Jeroen
9  General Category / EasyUI for jQuery / progressbar not updating on: October 25, 2015, 11:53:13 AM
Hello,

I'm trying to get a progressbar up and running in a dialog. Somehow, it is not updating on screen when I set the value in code using: $("#pb").progressbar('setValue', progress);

The onChange function is firing but the UI is not updating.

Do I need to set a timer to wait for a little while so the UI thread can catch up or something?

Cheers,
Jeroen
10  General Category / General Discussion / Re: autoscroll panel on: September 26, 2015, 04:51:35 AM
I was hoping you'd supply a jsfiddle, and you did. Thanks! Smiley

I have been testing with a panel in my app too and it works with one panel, but not with another.

That other panel has a panel-noscroll css class applied to it. Seems that's the issue, but I don't know how to solve it yet. Any ideas?

Edit: solved it by wrapping things in another panel. Now it works just fine. Thanks! Smiley
11  General Category / General Discussion / Re: autoscroll panel on: September 26, 2015, 04:03:26 AM
I'm using the scrollTo from https://github.com/flesler/jquery.scrollTo but can't get it to work. Are you sure it works with a JeasyUI panel?
12  General Category / General Discussion / autoscroll panel on: September 25, 2015, 03:42:18 AM
Hi,

I have a panel with a button on the top, some elements in the middle and an invisible table at the bottom. When I click the button, the table becomes visible. I want the panel to scroll down automatically to the table when I press the button. I have tried the jquery animate and scrollTo functions but can't get it to work within a JEasyUI panel...

How to achieve this effect?

Cheers,
JeroenNL
13  General Category / EasyUI for jQuery / Re: metro-gray on: August 17, 2015, 09:48:21 AM
I totally overlooked that one - excellent to see those themes available! Thanks! Grin
14  General Category / EasyUI for jQuery / metro-gray on: August 17, 2015, 04:45:32 AM
Hi there,

There used to be a metro-gray theme, which I like very much. I actually still use it in my app. But as this theme is not part of the JEasyUI release anymore, I fear I'm not fully up to date anymore.

Can you make this theme available again?

Cheers,
Jeroen
15  General Category / EasyUI for jQuery / propertygrid combobox on: August 11, 2015, 05:09:30 AM
Hi there,

I want to use a combobox in my propertygrid. My setup:

Code:
var options = [
                { value: "O", label: "Object" },
                { value: "W", label: "World" },
                { value: "N", label: "Normals" }
]

{
                    "name": "My Field", "value": "O", "group": "Settings", "editor": {
                        "type": "combobox",
                        "options": {
                            valueField: 'value',
                            textField: 'label',
                            editable: false,
                            panelHeight: 100,
                            data: options
                        }
                    }
                },
            ]

The labels are displayed correctly when the combobox is opened (showing the dropdown panel). But after selecting an item and leaving the combobox, the value of the item (!) is displayed in the editor. Of course, I'd expect the label to be displayed.

Am I doing something wrong?
Pages: [1] 2 3
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!