Questions tagged [qcubed]

QCubed is a PHP framework for rapid web development. Building on top of jQuery, with OOP at its core, QCubed provides a powerful solution for building database-driven Web 2.0 applications.

19 questions
6
votes
6 answers

Emails sometimes get scrambled

Folks, I have a PHP-based site (using the QCubed framework); as a part of the site, I have a daemon that's sending out several thousand emails a day (no i'm not a spammer, everything is opt-in :)). Emails are sent through a custom framework…
Alex Weinstein
  • 9,823
  • 9
  • 42
  • 59
1
vote
0 answers

SyntaxError: JSON.parse: unexpected non-whitespace character after JSON data at line 1 column 44498 of the JSON data

There are many similar issues addressed in this forum. But I couldn't get smarter about my problem. I will describe briefly. I have developed a nestedSortable QCubed platform. Everything is fine, but one thing remained unresolved. Sorting and…
Tiit Papp
  • 29
  • 3
1
vote
1 answer

Using qcodo with PHP7+

I was just asked to check into what's involved in getting a qcodo-based application (http://www.qcodo.com) updated to work with PHP7+. I've seen others lauding qcubed (http://qcubed.github.io) which seems to be a crowd-sourced fork of qcodo but, as…
Ben Coffin
  • 483
  • 4
  • 13
1
vote
3 answers

I am trying to focus my cursor in the filter textbox of QDataGrid where the page is refreshed. how can i do this

This is my QDataGrid $this->content = new QDataGrid($this, 'Dashboard'); $this->dtgContent->UseAjax = true; $this->dtgContent->ShowFilter = true; $this->dtgContent->RowActionParameterHtml = 'FileNum ?>'; …
1
vote
2 answers

How to create a virtual host for a QCubed project in xampp on Windows?

in httpd-vhosts.conf I added: NameVirtualHost *:80 DocumentRoot "C:/xampp/htdocs/tef_ticketing/workspace/htdocs" ServerName tef_ticketing.dev ServerAlias www.tef_ticketing.dev
eu127
  • 123
  • 1
  • 14
0
votes
1 answer

Qcubed 2.3 Setting a future date if the current datefield is null

Using QCubed 2.3 I am trying to set an ending date to way in the future if the current date field is null. Essentially I want to load the Ending date (Edate) to this future date when creating a new record. Here is what I am trying to do with code…
0
votes
1 answer

Qcubed 2.xx How do you extend the year range in the Qdatepicker dropdown

We are working with a CMS system built with qCubed 2.xx The Year range in the QDatepicker dropdown ended at year 2020. I cannot seem to find where to set or extend the date year range. Is there nyone out there who can help? Thanks David
David
  • 1
  • 2
0
votes
1 answer

QCubed - Join tables on multiple columns

Our company inherited an application using the Qcubed PHP framework. One of the features of this framework is the QQuery querying method. We have been unable to determine if its possible to create a join between two tables on two columns using…
0
votes
1 answer

How to send a excel attachment in QCubed

This is what i am trying $attach is the path to my excel => c:/xampp/htdocs/project/excel.xlsx Notification::SendEmail('xyz@gmail.com', 'abc@gmail.com', "Subject","message", $attach); If the$attach is removed then the email will go. But it fails if…
0
votes
1 answer

QCubed how to save QDateTime as NULL

my QCubed PHP class "Project" has a property called "Finished" which is object of QDateTime and data type "datetime" in MySQL database. I need to save NULL into database when user leaves this field blank in HTML
Nebster
  • 884
  • 1
  • 11
  • 19
0
votes
1 answer

Qcubed Left Join

How Can I make a left join in qcode/qcubed and select fields from both tables. ( no FK exists but there are fields that are logical to join ).
johnlemon
  • 20,761
  • 42
  • 119
  • 178
0
votes
1 answer

How to export file xml from QDataGridColumn to zip file for download from a button QCubed/QCodo

its my code .. can anyone help me ? :( public function btnZipDownload_Click($zip, $key, $base) { foreach($this->GetAllControls() as $objControl) { if (substr($objControl->ControlId, 0, 11) == 'chkSelected') { $zip = new…
0
votes
1 answer

jQuery sortable fails with overflow: auto;

I've developed a form that uses the jQuery sortable. The form has several other jQuery and general javascript scripts. I have specified overflow:auto; for the parent div of the sortable list. Everything works very well on my WAMP development…
Merrill
  • 21
  • 5
0
votes
3 answers

Jump to a specific page in a QDataGrid

Please note that this question is specifically for the QDataGrid feature of the QCubed PHP framework. The API documentation for QDataGrid does not describe any feature that answers this question. The QCubed samples site also doesn't have a…
0
votes
1 answer

QForm:Serialize exhausts memory after several postbacks

I have a problem with a form containing many dynamically created form elements with attached Server-Actions. After several postbacks I get a fatal memory exhausted error. The Serialize method of QForm consumes lots of megabyteds It seems the form…
1
2