EasyUI Forum
April 23, 2024, 06:50:44 PM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News:
 
  Home Help Search Login Register  
  Show Posts
Pages: 1 ... 11 12 [13] 14 15
181  General Category / EasyUI for jQuery / Re: New Release and don't work with my UI ... on: October 14, 2014, 07:51:16 AM
if you post it on a pastebin or something I can have a look
182  General Category / EasyUI for jQuery / Re: New Release and don't work with my UI ... on: October 14, 2014, 06:16:38 AM
did you also include the new css? 

it's very hard to advise without seeing the script.  maybe the original creator has an update?
183  General Category / EasyUI for jQuery / Re: New Release and don't work with my UI ... on: October 14, 2014, 05:55:27 AM
um, the current jeasyui is version 1.4.

the rest is unclear too.  can you show what isn't working?
184  General Category / EasyUI for jQuery / Re: Issues with propertygrid('beginEdit', i) on: October 14, 2014, 05:53:10 AM
thanks  Grin
185  General Category / EasyUI for jQuery / Re: Issues with propertygrid('beginEdit', i) on: October 13, 2014, 04:10:49 PM
so beginEdit intentionally doesn't do this automatically?  that seems counter-intuitive, and the docs don't mention it.
186  General Category / EasyUI for jQuery / Re: Does formatter:function cancel out styler:function? on: October 13, 2014, 01:10:30 PM
shouldn't
Code:
styler:function cellStyler(value,row,index){

be

Code:
styler:function(value,row,index){

 ?
187  General Category / EasyUI for jQuery / Re: edatagrid and post more data when want to save row on: October 13, 2014, 01:06:55 PM
both of these solutions do something like what you've described.  one updates the row data by adding to new fields, the other adds a new row to the grid.  both effectively "save data", but since "save data" is concept you invented instead of an actual function, we're only left to guess what you actually want. 

You'll need to be more clear, and if possible post some code showing what you have, what you tried, and show why it's "not working" and if you can, show what it would look like if it were working.
188  General Category / EasyUI for jQuery / Issues with propertygrid('beginEdit', i) on: October 13, 2014, 01:01:11 PM
I'm trying to get a "tab to next field" feature working.  I have it working for editor:"text" but for combobox I'm seeing weirdness.  clicking works as expected, but $(x).propertygrid('selectRow', i).propertygrid('beginEdit', i); is making it into a text field instead of the combo.  seems to be a problem with beginEdit.  Should I be doing this differently since it's a propertygrid?

here's what I've got http://cw.archreactor.org/test/test.html
this is actually generated via a template system, which is why there's hidden elements and 2 blocks of javascript.  I've left it in just in case it's causing a problem I'm not aware of.
189  General Category / Bug Report / IE textbox word wrapping issues on: October 08, 2014, 07:30:34 AM
my original question and solution http://www.jeasyui.com/forum/index.php?topic=3945.0

in short, please add "white-space: pre-wrap;" to ".textbox .textbox-text {" in easyui.css for all themes.
190  General Category / EasyUI for jQuery / Re: multiline textbox not line wrapping in IE11 on: October 08, 2014, 07:28:29 AM
found it. 

in Chrome the UA style-sheet's textarea "white-space: pre-wrap" overrides the easyui.css .textbox "white-space: nowrap;", but IE does not.

the solution is to add "white-space: pre-wrap;" to .textbox .textbox-text in the CSS. 
191  General Category / EasyUI for jQuery / multiline textbox not line wrapping in IE11 on: October 07, 2014, 01:41:37 PM
IE11, windows 7, for the textbox, the multiline option does not line-wrap long lines like it does on Chrome.  I tried all document emulation modes, same result. 

is this a known IE limitation?
192  General Category / EasyUI for jQuery / Re: required radiobuttons in a form on: September 18, 2013, 08:00:16 AM
I have made a validator for radio buttons.

Code:
	$.extend($.fn.validatebox.defaults.rules, {
requireRadio: { 
validator: function(value, param){ 
var input = $(param[0]);
input.off('.requireRadio').on('click.requireRadio',function(){
$(this).focus();
});
return $(param[0] + ':checked').val() != undefined;
}, 
message: 'Please choose option for {1}.' 

});

it used by adding it to only the first radio in a group.  adding to all is no harm, it just wastes CPU.
Code:
<input class="easyui-validatebox" type="radio" name="yes_no" value="1" data-options="validType:'requireRadio[\'#ff input[name=yes_no]\', \'Yes or no\']'">Yes

<input class="easyui-validatebox" type="radio" name="yes_no" value="0">No
193  General Category / EasyUI for jQuery / Re: onselect for a specfic tab on: September 12, 2013, 08:39:46 AM
do index and hest not have the same value?
194  General Category / EasyUI for jQuery / Re: "Card view" editing on: September 05, 2013, 01:42:31 PM
I've come up with this http://test.mywilsonmfg.com/easyui/demo/datagrid/cardview.html
am I on the right track?
195  General Category / EasyUI for jQuery / Re: Datagrid: Performance issues on: September 05, 2013, 12:14:48 PM
the client side paging and large data examples seem to handle 1000 rows just fine.  are you sure it's not the server side code the data comes from?  or is each row really large making the actual data 10 times what the examples do?
Pages: 1 ... 11 12 [13] 14 15
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!