EasyUI Forum
September 14, 2025, 04:29:38 PM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News:
 
  Home Help Search Login Register  
  Show Posts
Pages: [1]
1  General Category / EasyUI for jQuery / Ajax filter in ComboGrid is not working for Chinese IME in iOS on: November 12, 2018, 08:36:45 PM
In iOS
When we type Chinese using IME, we first composite the word, and select the Chinese character.
The onChange event is not fired after I pick the character.
I know it is the problem of browser in iOS.

But the select2 library (https://select2.org/) can handle this problem.

Can you please also introduce some workaround for this issue?
Ex. using setTimeout to check the inputted value periodically.

Regards,
2  General Category / EasyUI for jQuery / Re: how to make remote filtering send ajax post after inputting a whole chinese word on: November 12, 2018, 08:29:27 PM
I think it is not problem it submit "wo" when type. The real problem is it does not submit the selected word "我" after picking the Chinese word from the list. (happen in iPhone)
3  General Category / EasyUI for jQuery / Re: Combobox limit possibles values within the list (LimitsInList option) on: May 07, 2018, 01:39:14 AM
Same problem for me.
I think the limitToList option should also be available for ComboGrid
4  General Category / EasyUI for jQuery / Re: How to add event handler to a tab in javascript ? on: December 18, 2017, 07:05:54 PM
I found a "update" method in Tabs. It seems require I provide the content again. But at the moment, the content in the created tab is dynamic and complex. It is hard to re-init it. Any work around to the problem?
5  General Category / EasyUI for jQuery / Re: How to add event handler to a tab in javascript ? on: December 18, 2017, 06:50:43 PM
I can't find any "addEventHandler" method in any EasyUI component. If I have to re-init the tab. I have to store the tab config when it is created. And re-init all of them. Say 10+ tabs. I think it is not a good solution.
6  General Category / EasyUI for jQuery / How to add event handler to a tab in javascript ? on: December 18, 2017, 06:45:06 PM
I have created a Tab panel with many tabs. All the tabs are created dynamically. After the tab is created. I want to an event handler to one of the tab without re-init the whole tab panel. How to do it ?

Thanks
7  General Category / Bug Report / Re: EasyUI and JQueryUI Conflict on Resize on: April 27, 2016, 11:59:37 PM
The best way to solve this problem is use own copy of jquery for EasyUI and jQueryUi

Code:
	<script src="resources/jquery/jquery-1.11.3.min.js"></script>
<script src="resources/easyui/jquery.easyui.min.js"></script>
<script>
var $easy = $.noConflict(true);
</script>
<script src="resources/jquery/jquery-1.11.3.min.js"></script>
<script src="esources/jquery-ui/jquery-ui.min.js"></script>

Then use $ for jQueryUI's widget, $easy for EasyUI's components.
8  General Category / Bug Report / Re: EasyUI and JQueryUI Conflict on Resize on: April 27, 2016, 10:45:34 PM
Why EasyUI have to use same name as jQueryUI ? It is so annoying.
Why don't just add a prefix to all EasyUI's module name to solve the problem?
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!