Re: [Wtr-general] Watir and smartclient

2007-05-08 Thread Sadeesh Vinoth
Hi Angrez,

What i have attched is the source that is got by right clicking on the page.
I think this is what you are refering in your prevoius reply.

Thanks,
Sadeesh Vinoth T
___
Wtr-general mailing list
Wtr-general@rubyforge.org
http://rubyforge.org/mailman/listinfo/wtr-general


Re: [Wtr-general] Watir and smartclient

2007-04-23 Thread Sadeesh Vinoth
Hi Angrez,

Please find the source of web page developed using smartlcient,
Please let me know weather watir can be used for this.

Source.

!
SmartClient SDK
Component Data Binding example

Copyright 2001-2007 Isomorphic Software, Inc. (www.isomorphic.com)
--


HEADTITLE
SmartClient SDK - Component Data Binding example
/TITLE/HEADSCRIPTwindow.isomorphicDir='../../isomorphic/';/SCRIPT
SCRIPT 
SRC=../../isomorphic/system/modules/ISC_Core.js?isc_version=5.6.js/SCRIPTSCRIPTisc._lastModule='Core';/SCRIPT
SCRIPT 
SRC=../../isomorphic/system/modules/ISC_Foundation.js?isc_version=5.6.js/SCRIPTSCRIPTisc._lastModule='Foundation';/SCRIPT
SCRIPT 
SRC=../../isomorphic/system/modules/ISC_Containers.js?isc_version=5.6.js/SCRIPTSCRIPTisc._lastModule='Containers';/SCRIPT
SCRIPT 
SRC=../../isomorphic/system/modules/ISC_Grids.js?isc_version=5.6.js/SCRIPTSCRIPTisc._lastModule='Grids';/SCRIPT

SCRIPT 
SRC=../../isomorphic/system/modules/ISC_Forms.js?isc_version=5.6.js/SCRIPTSCRIPTisc._lastModule='Forms';/SCRIPT
SCRIPT 
SRC=../../isomorphic/system/modules/ISC_DataBinding.js?isc_version=5.6.js/SCRIPTSCRIPTisc._lastModule='DataBinding';/SCRIPT
SCRIPT 
SRC=../../isomorphic/skins/SmartClient/load_skin.js?isc_version=5.6.js/SCRIPT

BODY BGCOLOR=#D3D3D3SCRIPT


// load datasources
isc.DataSource.create({
serverType:sql,
fields:{
itemID:{primaryKey:true, hidden:true, type:sequence, name:itemID},
itemName:{
title:Item,
required:true,
type:text,
length:128,
name:itemName
},
SKU:{
title:SKU,
required:true,
type:text,
length:10,
name:SKU
},
description:{
title:Description,
type:text,
length:2000,
name:description
},
category:{
title:Category,
required:true,
type:text,
length:128,
foreignKey:supplyCategory.itemName,
name:category
},
units:{
title:Units,
valueMap:[Roll, Ea, Pkt, Set, Tube, Pad, Ream, Tin, 
Bag, Ctn, Box],
type:enum,
length:5,
name:units
},
unitCost:{
title:Unit Cost,
required:true,
type:float,
validators:[
{
type:floatRange,
min:0,
errorMessage:Please enter a valid (positive) cost
},
{
type:floatPrecision,
errorMessage:The maximum allowed precision is 2,
precision:2
}
],
name:unitCost
},
inStock:{title:In Stock, type:boolean, name:inStock},
nextShipment:{title:Next Shipment, type:date, name:nextShipment}
},
tableName:supplyItem,
testFileName:supplyItem.data.xml,
ID:supplyItem
})

isc.DataSource.create({
serverType:sql,
fields:{
Name:{
title:Name,
type:text,
length:128,
name:Name
},
EmployeeId:{title:Employee ID, primaryKey:true, required:true, 
type:integer, 
name:EmployeeId},
ReportsTo:{title:Manager, required:true, type:integer, 
rootValue:1, 
   foreignKey:employees.EmployeeId,name:ReportsTo},
Job:{
title:Title,
type:text,
length:128,
name:Job
},
Email:{
title:Email,
type:text,
length:128,
name:Email
},
EmployeeType:{
title:Employee Type,
type:text,
length:40,
name:EmployeeType
},
EmployeeStatus:{
title:Status,
type:text,
length:40,
name:EmployeeStatus
},
Salary:{title:Salary, type:float, name:Salary},
OrgUnit:{
title:Org Unit,
type:text,
length:128,
name:OrgUnit
},
Gender:{
title:Gender,
valueMap:[male, female],
type:text,
length:7,
name:Gender
},
MaritalStatus:{
title:Marital Status,
valueMap:[married, single],
type:text,
length:10,
name:MaritalStatus
}
},
tableName:employeeTable,
testFileName:employees.data.xml,
ID:employees
})

isc.DataSource.create({
serverType:sql,
fields:{
commonName:{title:Animal, type:text, name:commonName},
scientificName:{title:Scientific Name, primaryKey:true, 
required:true, type:text, 

Re: [Wtr-general] Watir and smartclient

2007-04-19 Thread Sadeesh Vinoth
Can anyone help me.
___
Wtr-general mailing list
Wtr-general@rubyforge.org
http://rubyforge.org/mailman/listinfo/wtr-general


Re: [Wtr-general] Watir and smartclient

2007-04-19 Thread Angrez Singh

Hi Sadeesh,

Is it possible for you to post the sample output as in how it looks?
Certainly looking at the output one could be able to help in telling whether
you can use Watir for testing or not.

Regards,
Angrez

On 4/19/07, Sadeesh Vinoth [EMAIL PROTECTED] wrote:


Can anyone help me.
___
Wtr-general mailing list
Wtr-general@rubyforge.org
http://rubyforge.org/mailman/listinfo/wtr-general

___
Wtr-general mailing list
Wtr-general@rubyforge.org
http://rubyforge.org/mailman/listinfo/wtr-general

Re: [Wtr-general] Watir and smartclient

2007-04-19 Thread Sergio Pinon
What is that you are looking for help with?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Sadeesh Vinoth
Sent: Thursday, April 19, 2007 7:28 AM
To: wtr-general@rubyforge.org
Subject: Re: [Wtr-general] Watir and smartclient

Can anyone help me.
___
Wtr-general mailing list
Wtr-general@rubyforge.org
http://rubyforge.org/mailman/listinfo/wtr-general
___
Wtr-general mailing list
Wtr-general@rubyforge.org
http://rubyforge.org/mailman/listinfo/wtr-general


Re: [Wtr-general] Watir and smartclient

2007-04-19 Thread Adam Reed
Sadeesh sent this to the list yesterday:

Hi,

Can we use Watir for testing applications developed using smartclient.
(Smartclient will use javascript elements instead of HTML elements.)

Thanks,
Sadeesh Vinoth T
___
Wtr-general mailing list
Wtr-general@rubyforge.org
http://rubyforge.org/mailman/listinfo/wtr-general 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Sergio Pinon
Sent: Thursday, April 19, 2007 9:33 AM
To: wtr-general@rubyforge.org
Subject: Re: [Wtr-general] Watir and smartclient

What is that you are looking for help with?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Sadeesh Vinoth
Sent: Thursday, April 19, 2007 7:28 AM
To: wtr-general@rubyforge.org
Subject: Re: [Wtr-general] Watir and smartclient

Can anyone help me.
___
Wtr-general mailing list
Wtr-general@rubyforge.org
http://rubyforge.org/mailman/listinfo/wtr-general
___
Wtr-general mailing list
Wtr-general@rubyforge.org
http://rubyforge.org/mailman/listinfo/wtr-general
___
Wtr-general mailing list
Wtr-general@rubyforge.org
http://rubyforge.org/mailman/listinfo/wtr-general


Re: [Wtr-general] Watir and SmartClient

2007-02-16 Thread Bret Pettichord
[EMAIL PROTECTED] wrote:
 does anyone know if Watir would run on a SmartClient, that uses IE dlls?
   
It probably wouldn't be hard to reuse 95% of watir, but you would have 
to make some modifications to the IE class.
___
Wtr-general mailing list
Wtr-general@rubyforge.org
http://rubyforge.org/mailman/listinfo/wtr-general


[Wtr-general] Watir and SmartClient

2007-02-15 Thread polleu
Hi there,

does anyone know if Watir would run on a SmartClient, that uses IE dlls?

Cheers,
Ulrike


___
Wtr-general mailing list
Wtr-general@rubyforge.org
http://rubyforge.org/mailman/listinfo/wtr-general