EasyUI Forum
May 20, 2024, 10:10:26 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 / Re: Using the Theme Builder on: February 10, 2014, 04:22:27 AM
Problem solved.

Thanks.
2  General Category / EasyUI for jQuery / Using the Theme Builder on: February 10, 2014, 01:48:21 AM
I'm not sure how to use the Theme Builder.

On the website I change nothing (Select Theme is Default), I go to the CSS tab, copy everything, and paste it over the downloaded file themes\default\easyui.css.

Then I double click on demo\datagrid\custompager.html, and now the icons for search, add and edit are gone. I can click on 'add', and the alert box appears, but I click on an empty space, there is no icon.

Is there something else I have to do besides overwriting themes\default\easyui.css?
3  General Category / EasyUI for jQuery / Re: combobox problem on: January 20, 2014, 10:34:52 AM
Indeed, now everything is ok.
Thanks very much.
4  General Category / EasyUI for jQuery / combobox problem on: January 18, 2014, 07:43:11 AM
I have a simple combobox, and it works as expected :

Code:
<select class="easyui-combobox" id="tcia1Browser">
  <option value=""></option>
  <option value="ie">Internet Explorer</option>
  <option value="ff">Firefox</option>
  <option value="other">Other</option>
</select>

Then I generate the same with jquery :

Code:
var the_html = 
'<select class="easyui-combobox" id="tcia1Browser" name="tcna1Browser"> ' +
'  <option value=""></option> ' +
'  <option value="ie">Internet Explorer</option> ' +
'  <option value="ff">Firefox</option> ' +
'  <option value="other">Other</option> ' +
'</select>';

$('#tcia1').html(the_html);

Now a default combobox appears, it is no longer styled with EasyUI.
Do I have to add some kind of refresh/redraw in javascript?
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!