The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
86 views

Tabular Input Yii

I have to input several strings into table in db. Its tabular input yii. Cannot understand, how to do it this way, if i have such controller: public function actionCreate() { $model1=new Section; ...
1
vote
1answer
48 views

Displaying mysql returns in clean and professional tabular report

this is my second question (so far) this week. My first one achieved a successful solution so I thought this one could also get lucky. I want to layout/design the returns my query outputted me in this ...
0
votes
2answers
125 views

Oracle Apex javascript Issue

I'm using below javascript to set value to cell in a tabular form. <script type="text/javascript"> function eventListener(pThis) { $('input[name="f04"]').change(function(){ var that = this; ...
0
votes
1answer
408 views

Calculate Sum of Oracle Apex Tabular Form Cell

There is a column as Amount in my oracle apex tabular form. I need to calculate SUM of all fields under this column while data is being entered and display on a Display only field below the tabular ...
1
vote
1answer
277 views

Populate Tabular form field value with change of another field

There is a Tabular form with description, previous_value, unit_price fields in my Oracle Apex app. I need to populate value of previous_value field with data on description field. I have a query to ...
0
votes
1answer
51 views

can someone please point me to ztabularinputmanager implementation

I need to implement tabular input form in yii (by tabular I mean multiple models at same time) as I have asked in this question Is there any user interface available in yii framework for tabular ...
0
votes
2answers
151 views

Arrange sqllite table data in tabular form in android?

I am trying to display table data in tabular form in android program. my table: orderno productid productqty custid 1 1000001 2 00010 2 1000001 5 ...
1
vote
0answers
97 views

tabular data struts

I tried to capture data from a master-detail form return an JSON object as follows my form is mimilar this http://www.vitarara.org/cms/struts_2_cookbook/creating_a_theme I followed this guide ...
0
votes
3answers
282 views

How to update selected rows only in Oracle SQL

So basically I have a tabular form. One of the columns is a checkbox, another column is called 'hidden' and will contain either the value 'yes' or 'no'. I have a button for hiding rows, so the user ...
0
votes
0answers
1k views

Manually creating Add Row Button in tabular form in APEX 4.1 giving error

I have created manual Add Row button on my tabular form in APEX 4.1. However, when I press ADD Row button the tabular form query is not refreshing. I have partial page refresh set on tabular form ...
1
vote
1answer
100 views

Tabulation of data in perl

I have the input format as below, I want to create a tablular format for these data. CELL = "abc" "model" "abc" "description" "qwerty+keypad with slide" **tech** ...
1
vote
1answer
686 views

How to create update process for single entry form in APEX 4.1

As a newbie APEX developer, I have this question. I am sure this solution might be available but was unable to find a proper answer anywhere. Here is the case scenario: (Provide user a capability to ...
0
votes
1answer
261 views

How would I sort and display data in a tabular way with entities gathered from a Linq request?

How would I display data from the following database entity in a format that looks like a table: public class Attendance { public int AttendanceID { get; set; } public int CourseID { get; ...
0
votes
2answers
388 views

Write Contents in a Txt file in a tabular order using C#

I want to write contents into a text file from a DatagridView in my application. In my text file, I would like to follow a format like Column1 Column2 Column3 [Cell1] ...
1
vote
1answer
6k views

APEX Tabular Form with [row selector]: How to set value of column in selected rows on submit

I have a tabular form that displays all requests submitted for processing. Submitters have the oppurtunity to cancel requests at any time. I would like this to be accomplished by simply checking the ...
1
vote
1answer
2k views

Calculate Sum of Oracle Apex Tabular Form Field

There is a column as Price in my oracle apex tabular form. I need to calculate sum of all fields under this column and assign it to hidden field in Master form for validation. Actually there is a ...
2
votes
1answer
1k views

Collecting Tabular Input with AJAX

I want to use tabular data collection but I am facing some problems with it. see as you have to use <?php echo CHtml::activeTextField($item,"[$i]name"); ?> with key in above it is $i this ...
1
vote
2answers
2k views

APEX - Can a Tabular Form with its MRU functionality have filtering functionality like an Interactive Report?

What I really need is a Tabular form that allows me to update multiple rows at a time while being filterable like an Interactive report. Any chance this is even remotely possible? I would also like ...
2
votes
1answer
266 views

Manipulate Custom Tabular representation in Mathematica

Considering the following data example : data ={ {"a", "b", "c", "d", "e"}, {1, 2, 3, 4, 5}, {11, 12, 13, 14, 15}, {21, 22, 23, 24, 25} }; And the following ...
6
votes
2answers
331 views

Create a Function for Customized Tabular Representation

I use the code below get an overview of parts of my data. What would be the best way to make a function out of the below code ? It would take a dataList as well as some graphical options (such as ...
4
votes
3answers
3k views

Printing tabular data in Python

I'm surprised I can't find any simple solution to this by googling: What's the best way to print tabular data in Python? Say the data is in a 2D list and I want to create a smart looking table. What ...
1
vote
1answer
2k views

How to dump an output from SQL Server Profiler 2008 to a CSV-like file

I am debugging stored procedures, and right now I am interested in what ran in what order and which which parameters as opposed to how fast things ran and what may sneak in between and cause a ...
2
votes
1answer
3k views

Update Apex Tabular form with PLSQL

How can I update an Apex Tabular Form with pl/sql instead of using a multi-row update(MRU), is it even possible? Thanks in advance.
1
vote
1answer
890 views

Printing Jasper report data in matrix format

I have a situation where I need to print data in matrix format. I have main report and subreport. From the main report I am passing a list (objects) to the subreport. Inside the subreport I have to ...
0
votes
1answer
2k views

Oracle APEX - Setting up a Tabular Form with default values

I pretty new to APEX and I'm having a bit of trouble working with my first Tabular form. The table I've linked it to is fairly simple. The columns are as follows: Primary key representing an ...