I will print two datawindow in one page,and I use child datawindow.One master datawindow (dw_master)with two child datawindow(dc1 and dc2)dw_master("dw_dc1",dc1)
dw_master("dw_dc2",dc2)
dc1 has a argument (arg1)
dc2 has a argument (arg2)
Arg1 and Arg2 are send by one column of dw_master.
When I use retrieve() function,the datawindow can display normal,but when I
print preview or use Zoom or printsetup() ,the childdatawindow dc2 can't
display but dc1 normal!
Why??
Thanks for your help!
I'm having trouble understanding your question. Is this a composite or nested
datawindow?
On Mon, 6 May 2002 22:49:23 +0800,
in powersoft.public.powerbuilder.datawindow
spark <fenfei79@hot...
DataWindow This, DataWindow That...Blah blah blah
You've heard it enough that you don't even want to comment on how many
times...
The DataWindow.
....but it can't be enough anymore...can it?
This from one of our colleagues
(and yes my apologies for taking it out of context)...
"...PB covers all you need to do that in ONE Tool. This
includes Windowprogramming ( meaning the interface to the user:
Windows, Sheets, diallougeboxes, etc.), Database operability AND
Reporting! Well, I see als well as many other PB users that some of
the implementations and features PB offers are improvable. But thi...
Child datawindows (Nested DataWindows)Hello all...I was wondering... I have used Child Datawindows
for quite some time under PB9.03. These are invaluable when
a user is in the Parent DataWindow and must choose a value
from a list of choices provided by the Child DataWindow. The
kind of Child DataWindow I am talking about is a
DropDownDataWindow (DDDW). This is the only kind I have ever
used. I was simply wondering whether there are more kinds of
Child DataWindows other than the DDDW? Any info would be
greatly appreciated.:)
The next most popular use is of child DWs within
Composite Presentation Style parents.
Nested ...
How to share the datawindow to inner datawindow of nested datawindowHow to share the datawindow to inner datawindow of nested datawindow.
Ex
--------
dw_1 is normal datawindow dw_nes is nested datawindow, both are placed
one window
dw_nes contain dw_child datawindow
Question
----------------
i want to share dw_1 and dw_child.
I have tried the below code, getting error
dw_1.sharedata( dw_nes.object.dw_child)
It's the dot notation. You will need to dw_nes.GetChild("dw_child", ldwc)
where ldwc is a _local_ datawindowchild.
<kzganesan@gmail.com> wrote in message
news:4c64c402-bac5-4ee0-83aa-4ac08ffe43e5@r66g2000hsg.go...
Getting Datawindow name from datawindow child variableHi !
I want to get the datawindow (name) from a datawindowchild variable.
But, the dwc has no way to get it.
I want the code like this :
datawindowchild dwc
dw_1.getchild("colname", dwc)
dw_2.dataobject = dwc.dataobject
-------------- -> X
In the above code, "dw_1.object.colname.dddw.name" is what I want.
But, from the "dwc", I can't know that.
Please, help!
thx.
You're correct. There is no way to get the datawindow name from the
datawindow child, you have to ask the paren...
DataWindow Within DataWindowHow Can I access/modify object/control from a Datawindow within Datawindow.
When i access/modify object/control from a Datawindow i used
dw_1.modify("name.text = 'new val'") but within another datawindow or child
datawindow it doesnt work.
Your description is difficult to understand due to the terminology. First,
a datawindow is assigned to a control - either a datawindow control or a
datastore. Second, the Modify function can only be called within a script.
With that as a basis, can you rephrase the question and describe more
precisely what you want to do? ...
DataWindows and datawindow objectsDifference between Datawindow and datawindowobjects?
- datawindow is a control on a userobject or a window
- datawindowobject (DWObject) is a control within a datawindow, defined in
the dataobject of the datawindow.
You refer to it as <datawindow-instance>.Object.<datawindow object>
HTH,
Ben (bede)
<Santhoshi> wrote in message news:3f8bee8b.4631.846930886@sybase.com...
> Difference between Datawindow and datawindowobjects?
Not exactly;
DW Control is a "container" that reserves real-estate on the surface of
a visual object.
DW Obj...
datawindows in composite datawindow used in datawindow.NET, are not sliding upHi,
Problem: datawindows in composite datawindow used in "datawindow.NET", are
not sliding up ,
if one dw is not visible or did not retrieve data. Resulting in unwanted
spaces.
The height of blank white space is equal to the height of the datawindow art
design time.
When I looked at the generated JavaScript, I noticed there is "div" for the
datawindow with height 0.00in
which is supposed to be not visible. Tried different options with
html/xhtml/xml same result.
But slides up ok when exported to pdf(using saveas) on web and in PB10.5
application.
Also s...
datawindowAdd direct setting and getting capability for the datawindow where clause.
This would have to be a string array in case of unions.
Return ONLY the where clause(s) in the main select (in case of sub-selects,
ignore the where clause or somehow list it as a subselect in the where or a
subselect in the select).
It would be great if I could just get and set this as a value and have the
datawindow automatically change (or add) the where clause as specified.
This is for setting the where clause dynamically at run time. Currently
have to parse through the datawindow.table.select looking f...
modifiyin a datawindow in a datawindowHi,
When I want to modify a datawindow, then it's just
dw1.modify()
But what do I have to do when I want to modify a datawindow
in a datwindow ?
I tried : dw1.dw2.modify() but that doesn't work.
Anyone can help me out with this ?
thanks.
Regards,
David
get the dw via getchild & apply modify
In article <4575976f.4dda.1681692777@sybase.com>, David says...
> Hi,
> When I want to modify a datawindow, then it's just
> dw1.modify()
>
> But what do I have to do when I want to modify a datawindow
> in a datwindow ?
> I tried : dw...
Any way to get the parent of a child datawindow in a composite datawindow?Using PB 8.0.3 9704 on Win2K.
I have a DataWindowChild that came from a GetChild() call for a composite
datawindow. At runtime, I don't "know" what composite datawindow is the
parent of the child datawindow.
Any ideas on how to get this information?
I tried DataWindowChild.GetParent(). Compiles fine and "Help" says this
should work, but all I get is a null object reference.
Thanks in advance...
Is this a problem with a poorly designed function signature?
Succesfull GetChild call could ONLY have been done with having a reference
to the datawindow...
GetObjectAtPointer() returns wrong child datawindow in composite datawindowPB 7.0.3 Build 10077
I have a composite datawindow that contains a number of child datawindows.
When I click in the composite dw I want the name of the child datawindow to
be returned. It doesn't seem that the GetObjectAtPointer() function
corresponds with the position being clicked in the composite dw. The problem
is that the child datawindows will be of varying heights depending on number
of rows in each datawindow.
How can I make sure that when I click in the composite datawindow, the
correct name of the child datawindow is being returned.
Here is an excerpt of the code t...
How to? Returning FullState Blob of Datawindow with Child Datawindow with Arguments?
We've run into a problem... we have a datawindow which contains a child
datawindow which requires arguments.
In the component, we are doing a GetChild, SetTrans, Retrieve on the
child, then a settrans and retrieve on the main.
At this point, the component goes into the weeds... nothing helpful in
the server log.
I thought I had seen some info here relevant to this problem, but I'm
not turning up much that's helpful. We're talking PB7, both
for the client and component.
Can someone give me a summary on how it's *supposed* to work?
Some additional...
Problem with a Drop Down DataWindow (child) on a grid type DataWindow.PB 7.02 Build 8046 on Windows NT 4.0
I have a problem with a Drop Down DataWindow (child) on a grid type
DataWindow.
One of the columns in my DataWindow is presenting a selection, limited
(filtered) according to what the user has selected in a previous column (on
the same DataWindow). The Drop Down DataWindow is not displaying the raw
data (an abbreviated code), but an English text translation of the data
needed. Here is my problem:
When the DataWindow is activated, all data are correctly displayed (no
filtering yet). When the user clicks on one of the rows and on the column,
w...