jQWidgets Forums
Forum Replies Created
-
Author
-
PS: The first time works well, but on refresh didn’t work!
I think that the problem is in ‘ready’ because this call only once time when rendered the code.Auto respond… after to try several options of css styles, this is a possible solution (fixed for me):
<style>
.jqx-grid-cell-pinned{
position: absolute !important;
z-index: 1000000 !important;
}.jqx-numberinput{
position: relative !important;
float: left !important;
}
</style>See you!
Gustav.Hello, thank you for the answer. Yes, this is that i need, finally exist any way to have the same behavior with keyboard?
f.e.: if I put 16 is possible.Thank you again!
Gustav.Hello, I’m using like your example, but I get data from json and I’ve setting displayMember and valueMember… so if I use checkItem the value will be String (displayMember) or Integer (valueMember)???
Or exist other way to check dinamically?
Thank you.
Gustav.Great, thank you very much!
Gustav.
Ok, thank you!!!
Gustav.
December 9, 2015 at 6:19 pm in reply to: Global appointment restrictions Global appointment restrictions #79135Hello and thank you!
Sorry, but i don’t understand, this is my code, can you help me?
var source = { dataType: 'json', dataFields: [ { name: 'id', type: 'string' }, { name: 'status', type: 'string' }, { name: 'about', type: 'string' }, { name: 'address', type: 'string' }, { name: 'company', type: 'string'}, { name: 'name', type: 'string' }, { name: 'style', type: 'string' }, { name: 'calendar', type: 'string' }, { name: 'start', type: 'date', format: "yyyy-MM-dd HH:mm" }, { name: 'end', type: 'date', format: "yyyy-MM-dd HH:mm" } ], id: 'id', url: '<?=base_url()?>/js/appointments.txt' }; var adapter = new $.jqx.dataAdapter(source); $("#scheduler").jqxScheduler({ date: new $.jqx.date(<?=date("Y")?>, <?=date("m")?>, <?=date("d")?>), width: '100%', height: 600, source: adapter, showLegend: true, editDialog: false, appointmentDataFields: { from: "start", to: "end", id: "id", description: "about", location: "address", subject: "name", style: "style", status: "status" }, localization: { firstDay: 1, }, view: 'weekView', views: [ 'dayView', 'weekView', 'monthView' ] });
Best regards,
Gustav.Hello, thanks, this is part of my code:
<textarea class="form-control" rows="3" id="texto_simple_en" name="texto_simple_en"></textarea>
$('#texto_simple_en').jqxEditor({ height: '300px', width: '100%', tools: 'bold italic underline | format size color | left center right | ul ol | link | clean | html', pasteMode:"html" });
I send thru post to my php code that insert in database with tipical insert query.
Thank you!Sorry, this example is clear:
<div>?Departures: Miércoles y sábados<br>Duration: All day<br><br><p>All-day trip. Tour the states of New
Jersey, Delaware and Maryland from 6 a.m. until your arrival in
Washington D.C. to learn about the history of the United States and its
constitution as a country. The best investment of your time and money,
no doubt.<br>
Tours are available on Wednesdays and Saturdays.</p></div>Thank you!
August 18, 2015 at 12:35 pm in reply to: show dates with a day wrong. show dates with a day wrong. #74921Hello Peter,
thank you for the answer. I could find my problem:
In my source I put this:
{ name: ‘fecha_inicio’, type: “date”, format: ‘dd-MM-yyyy’ },But in my MySQL the format date is ‘yyyy-MM-dd’… In the source I’ve to put the same format as my database and in my grid I’ve to put the format that I want to see.
See you!
Gustav Dunn.July 14, 2015 at 2:12 pm in reply to: Strange behavior with scroll Strange behavior with scroll #73706Hello Dimitar, I understand.
Thank you for the answer.
Gustav.Thank you, Peter!
Best regards,
Gustav.Hi,
Works perfect!
Thank you,
Gustav.Hello and thank you,
i’m using jqxComboBox, is the same?
best regards,
Gustav. -
AuthorPosts