Great Ideas. Always Flowing.

We are not happy until you are happy. Client satisfaction guaranteed. Whatever your needs and requirements, we have the skills and resources for the job!

Quick login...


Or... now make it easy with Facebook Integration
Connect via Facebook



Top Sellers

Frustrated over the lack of customization for your user's registration fields? Dynamically setup your DNN Portal with custom registration fields, layout, questions, and other core integration options......

Ultra Video Gallery is a brother product of Ultra Media Gallery, UVG allows you to upload videos in various format and automatically encode them to flv or H264 format, you also can add videos from internet or record live videos from your webcam.

Build high performance, completely customizable data-entry forms and views driven by your DNN and external databases. New built-in tools make it a snap to quickly create data entry forms, data views, and even database tables. Plus, add your own HTML, CSS, Javascript, SQL commands, stored procedures,

The most advanced DotNetNuke shopping cart on the planet. Easy to use e-Commerce, Secure Shopping Cart Software and SEO friendly. B2C / B2B Ecommerce Sites.

One stop solution for events calendar and events registration! FREE DOWNLOAD is available now!

DynamicForms_ResultsID versus UniqueCompletionID
Last Post 12-10-2009 08:04 AM by David To. 30 Replies.
AddThis - Bookmarking and Sharing Button Printer Friendly
  •  
  •  
  •  
  •  
  •  
Sort:
PrevPrev NextNext
You are not authorized to post a reply.
Page 1 of 212 > >>
Author Messages
ABUser is Offline
going with the flow
going with the flow
Posts:62
Avatar

--
10-02-2009 01:16 PM

    When I generate my flat table using 'Generate Create Table SQL (One time only execution)' frp, 'Assistance Links', I noticed that four additional fields are created without my control and they are UniqueCompletionID, ResponseDateTime, UserID, and DynamicForms_ResultsID.

    When I generate the Insert SQL Query using the "Generate Insert SQL Query', the field DynamicForms_ResultsID is not included.  The same thing when I generate the Update SQL.

    I am using Indoogrid to display all rows and I'm trying to follow your instructions for demo14.  The Insert SQL Query works BUT like I said, the field DynamicForms_ResultsID is not included in the insert ALTHOUGH it seems to be tracking a number.  My problem now is when I use the edit button created as shown on Demo14, it doesn't update but rather adds a new row.  This is because the Update and Delete SQL queries generated by your Assitance Links' use where UniqueCompletionID='$(DSParam)'.

    UniqueCompletionID doesn't work with IndooGrid as the  unique key.  You advised me on my other forum to contact IndooGrid because you said that it used to work.  I did and they said that nothing has changed.  The unique key to use for IndooGrid has to be of numeric type but yours (UniqueCompletionID) is uniqueidentifier type.

    David ToUser is Offline
    river guide
    river guide
    Posts:2719
    Avatar

    --
    10-05-2009 07:07 AM
    Hi, in your particular case, what you can do is not use the UniqueCompletionID. Instead, in your flat table, you should have a primary key (of datatype integer that is also an Idendity column that auto increments by value of 1). Call it IDKey or something. Use this as your editing column and not UniqueCompletionID. Can you type in here what your SQL flat table structure is? -- David
    ABUser is Offline
    going with the flow
    going with the flow
    Posts:62
    Avatar

    --
    10-05-2009 01:53 PM
    Can I use your DynamicForms_ResultsID? As I mentioned previously, this is one of the fields (the others are UniqueComptionID, ResponseDateTime, UserID) that get automatically created when I generate the SQL table using "Generate Create Table SQL..." thru your Assistance Links.
    David ToUser is Offline
    river guide
    river guide
    Posts:2719
    Avatar

    --
    10-05-2009 03:02 PM
    Technically, you should be able to use DynamicForms_ResultsID as long as it's not stored as a uniqueidentifier value automatically. I don't know off the top of my head which data type it uses though. -- David
    ABUser is Offline
    going with the flow
    going with the flow
    Posts:62
    Avatar

    --
    10-06-2009 09:57 AM
    Below is the structure of my table.

    /****** This script was created using the Data Springs Dynamic Forms Create Table SQL Routine ******/
    /****** - This SQL Script should be executed under Host, SQL within your DNN Installation ******/
    /****** - You should only execute this script one time, and it should be executed after your have setup all of your form fields. ******/
    /****** - Your table will be created based on your form fields short field names ******/
    /****** - You should always review your SQL query created, to determine approx column names, column sizes, and overall query. ******/
    /****** - Note: Creating your own table and using SQL events is not required to capture data, your form data is alreay stored in standard related tables. ******/
    /****** Creating your own table and inserting data into the table should only be used for advanced data manipulations or custom application requirements. ******/
    /****** - Example implementations might include insert/update/delete custom workflow implementation requirements, backup log of data, or other related implementations. ******/
    CREATE TABLE {databaseOwner}[{objectQualifier}DynamicForms_myowntable](
    [DynamicForms_ResultsID] [int] IDENTITY(1,1) NOT NULL,
    [UniqueCompletionID] [UniqueIdentifier] NULL,
    [ResponseDateTime] [DateTime] NULL,
    [UserID] [int] NULL,
    [IPAddress] [nvarchar] (100) NULL,
    [applHTMLLEADImage] [nvarchar](500) null,
    [DSParam2a] [nvarchar](500) null,
    [GenHTML] [nvarchar](500) null,
    [applOptType] [nvarchar](500) null,
    [applTxtSchoolYr] [nvarchar](500) null,
    [applTxtUserName] [nvarchar](500) null,
    [applLstEligiblePos] [nvarchar](500) null,
    [applTxtFName] [nvarchar](500) null,
    [applTxtMidName] [nvarchar](500) null,
    [applTxtLName] [nvarchar](500) null,
    [applTxtSuffix] [nvarchar](500) null,
    [applTxtUnit] [nvarchar](500) null,
    [applTxtWorkAddr] [nvarchar](500) null,
    [applTxtWorkPhone] [nvarchar](500) null,
    [applTxtCellPhone] [nvarchar](500) null,
    [applTxtFax] [nvarchar](500) null,
    [applTxtEmail] [nvarchar](500) null,
    [applHTMLLabelPartner] [nvarchar](500) null,
    [applLstPartnersByAppl] [nvarchar](500) null,
    [applChkFindPartner] [nvarchar](500) null,
    [applHTMLLabelSchoolPref] [nvarchar](500) null,
    [applOptSchoolPref] [nvarchar](500) null,
    [applTxtSchoolByAppl] [nvarchar](500) null,
    [applTxtSchoolAreaByAppl] [nvarchar](500) null,
    [applHTMLabelSchoolAgr] [nvarchar](500) null,
    [applOptSchoolAgr] [nvarchar](500) null,
    [applTxtDtSubmit] [nvarchar](500) null,
    [SQLType] [nvarchar](500) null,
    [DSParam1] [nvarchar](500) null,
    [PortalID] [nvarchar](500) null
    )


    I followed your instructions in creating the Edit Record Button in demo 14 for my IndooGrid and here are my settings for my primary key "DynamicForms_ResultsID" in IndooGrid.

    URL: http://myserver/HiddenPages/Testing...fault.aspx

    Parameter:
    DSParam1

    Select column for parameter value: DynamicForms_ResultsID

    When I click on the Edit Record I created for the IndooGrid, this is what shows in the address:

    http://myserver/HiddenPages/Testing...dsparam1=2


    The value of dsparam1 which is 2 is correct but then my DF doesn't have data in it.

    Also, in my module configuation, I checked the "Enable initial SQL data bind'. I also checked "Only enable when querystring variable is present' and a querystring variable of 'DBUpdate'. and in the Select statement I have "where DynamicForms_ResultsID='$(DSParam1).

    Please help me.
    David ToUser is Offline
    river guide
    river guide
    Posts:2719
    Avatar

    --
    10-06-2009 06:10 PM
    Hi, your address should be:
    http://myserver/HiddenPages/Testing...pdate=True

    Note: DSParam1 without the & in front. Also need to pass the querystring variable DBUpdate=True. Try this out and see if it works for you.

    On the SQL binding, should have: where DynamicForms_ResultsID = '$(DSParam1)'

    -- David
    ABUser is Offline
    going with the flow
    going with the flow
    Posts:62
    Avatar

    --
    10-07-2009 08:12 AM
    Hello, David.

    I'm sending you screen prints of the error messages I got when I put the URL you provided in a separate e-mail cause I don't know how to attach it here.

    What you suggested above to put in the SQL binding (where DynamicForms_ResultsID = '$(DSParam1)'
    ) I already had.



    David ToUser is Offline
    river guide
    river guide
    Posts:2719
    Avatar

    --
    10-07-2009 10:10 AM
    Hi, the error messages you're getting "The target element with id dnn_..." only happens when you have a "Display after save" message and are logged in as Admin with the Edit view. Users will not see this error when they are logged in. This is a bug we are still determing the issue. j

    On a side note, concerning your Indoogrid "Edit Record", can you paste in your URL here?

    Also paste your Dynamic Forms SQL binding statement here as well. Thanks. -- David
    ABUser is Offline
    going with the flow
    going with the flow
    Posts:62
    Avatar

    --
    10-07-2009 12:10 PM
    Hi, David.

    It will probably make more sense if I sent you the screenshot in IndooGrid where I input the URL you told me to use. The problem though with your URL is that it's assigning a specific value to DSParam1 (which is 2). Is this okay?

    The screenshot also shows the settings for DSParam1 in DF.

    I'd really appreciate it, David, if you can get this to work. Thanks.
    ABUser is Offline
    going with the flow
    going with the flow
    Posts:62
    Avatar

    --
    10-07-2009 02:16 PM
    YOU ARE AWESOME! I only needed to remove the single quotes around $(DSParam1). It didn't work when I had the single quotes around it.

    I don't know why I only had the where clause in there.

    But anyhow, thank you very much.
    ABUser is Offline
    going with the flow
    going with the flow
    Posts:62
    Avatar

    --
    11-16-2009 10:41 AM
    Hello, again. Sorry, I was out of the country for almost a month.

    Anyway, I'm back testing and what I've noticed is that when I use the button "Edit Record" to edit, it creates a NEW record instead. What am I doing wrong? Thanks.
    David ToUser is Offline
    river guide
    river guide
    Posts:2719
    Avatar

    --
    11-16-2009 10:57 AM
    HI, what is your SQL code to insert and update a record? Can you paste them here? -- David
    ABUser is Offline
    going with the flow
    going with the flow
    Posts:62
    Avatar

    --
    11-16-2009 12:14 PM
    Below is the insert:

    /****** This script was created using the Data Springs Dynamic Forms Insert Data SQL Routine ******/
    /****** - This SQL Script should be executed as a SQL Completion Event to store data into your custom table. ******/
    /****** - You should always review your SQL query created. ******/
    /****** - Note: Creating insert SQL queries and using SQL events is not required to capture data, your form data is alreay stored in standard related tables. ******/
    /****** Inserting data into a custom table should only be used for advanced data manipulation or custom application requirements. ******/
    /****** - Example implementations might include insert/update/delete custom workflow implementation requirements, backup log of data, or other related implementations. ******/

    INSERT INTO {databaseOwner}[{objectQualifier}DynamicForms_LEADApplication](
    [UniqueCompletionID],
    [ResponseDateTime],
    [UserID],
    [IPAddress],
    [applHTMLLEADImage],
    [DSParam2a],
    [GenHTML],
    [applOptType],
    [applTxtSchoolYr],
    [applTxtUserName],
    [applLstEligiblePos],
    [applTxtFName],
    [applTxtMidName],
    [applTxtLName],
    [applTxtSuffix],
    [applTxtUnit],
    [applTxtWorkAddr],
    [applTxtWorkPhone],
    [applTxtCellPhone],
    [applTxtFax],
    [applTxtEmail],
    [applHTMLLabelPartner],
    [applLstPartnersByAppl],
    [applChkFindPartner],
    [applHTMLLabelSchoolPref],
    [applOptSchoolPref],
    [applTxtSchoolByAppl],
    [applTxtSchoolAreaByAppl],
    [applHTMLabelSchoolAgr],
    [applOptSchoolAgr],
    [applTxtDtSubmit],
    [SQLType],
    [DSParam1],
    [PortalID]
    )
    VALUES (
    '$(UniqueCompletionID)',
    GetDate(),
    $(UserID),
    '$(IPAddress)',
    '$(applHTMLLEADImage)',
    '$(DSParam2a)',
    '$(GenHTML)',
    '$(applOptType)',
    '$(applTxtSchoolYr)',
    '$(applTxtUserName)',
    '$(applLstEligiblePos)',
    '$(applTxtFName)',
    '$(applTxtMidName)',
    '$(applTxtLName)',
    '$(applTxtSuffix)',
    '$(applTxtUnit)',
    '$(applTxtWorkAddr)',
    '$(applTxtWorkPhone)',
    '$(applTxtCellPhone)',
    '$(applTxtFax)',
    '$(applTxtEmail)',
    '$(applHTMLLabelPartner)',
    '$(applLstPartnersByAppl)',
    '$(applChkFindPartner)',
    '$(applHTMLLabelSchoolPref)',
    '$(applOptSchoolPref)',
    '$(applTxtSchoolByAppl)',
    '$(applTxtSchoolAreaByAppl)',
    '$(applHTMLabelSchoolAgr)',
    '$(applOptSchoolAgr)',
    '$(applTxtDtSubmit)',
    '$(SQLType)',
    '$(DSParam1)',
    '$(PortalID)'
    )



    Below is the update:

    /****** This script was created using the Data Springs Dynamic Forms Update Data SQL Routine ******/
    /****** - This SQL Script should be executed as a SQL Completion Event to update data into your custom table. ******/
    /****** - You should always review your SQL query created. ******/
    /****** - Note: Creating update SQL queries and using SQL events is not required to capture data, your form data is alreay stored in standard related tables. ******/
    /****** Inserting data into a custom table should only be used for advanced data manipulation or custom application requirements. ******/
    /****** - Example implementations might include insert/update/delete custom workflow implementation requirements, backup log of data, or other related implementations. ******/

    Update {databaseOwner}[{objectQualifier}DynamicForms_LEADApplication]
    Set [applHTMLLEADImage] = '$(applHTMLLEADImage)',
    [DSParam2a] = '$(DSParam2a)',
    [GenHTML] = '$(GenHTML)',
    [applOptType] = '$(applOptType)',
    [applTxtSchoolYr] = '$(applTxtSchoolYr)',
    [applTxtUserName] = '$(applTxtUserName)',
    [applLstEligiblePos] = '$(applLstEligiblePos)',
    [applTxtFName] = '$(applTxtFName)',
    [applTxtMidName] = '$(applTxtMidName)',
    [applTxtLName] = '$(applTxtLName)',
    [applTxtSuffix] = '$(applTxtSuffix)',
    [applTxtUnit] = '$(applTxtUnit)',
    [applTxtWorkAddr] = '$(applTxtWorkAddr)',
    [applTxtWorkPhone] = '$(applTxtWorkPhone)',
    [applTxtCellPhone] = '$(applTxtCellPhone)',
    [applTxtFax] = '$(applTxtFax)',
    [applTxtEmail] = '$(applTxtEmail)',
    [applHTMLLabelPartner] = '$(applHTMLLabelPartner)',
    [applLstPartnersByAppl] = '$(applLstPartnersByAppl)',
    [applChkFindPartner] = '$(applChkFindPartner)',
    [applHTMLLabelSchoolPref] = '$(applHTMLLabelSchoolPref)',
    [applOptSchoolPref] = '$(applOptSchoolPref)',
    [applTxtSchoolByAppl] = '$(applTxtSchoolByAppl)',
    [applTxtSchoolAreaByAppl] = '$(applTxtSchoolAreaByAppl)',
    [applHTMLabelSchoolAgr] = '$(applHTMLabelSchoolAgr)',
    [applOptSchoolAgr] = '$(applOptSchoolAgr)',
    [applTxtDtSubmit] = '$(applTxtDtSubmit)',
    [SQLType] = '$(SQLType)',
    [DSParam1] = '$(DSParam1)',
    [PortalID] = '$(PortalID)'
    Where DynamicForms_ResultsID = '$(DSParam1)'
    David ToUser is Offline
    river guide
    river guide
    Posts:2719
    Avatar

    --
    11-17-2009 06:49 AM
    Hi, so how are you tying these two SQL statements to your Dynamic Forms completion event? How do you determine when you click on "Edit" it is in "Edit" mode and should call the Update script as opposed to the "Insert" script? -- David
    ABUser is Offline
    going with the flow
    going with the flow
    Posts:62
    Avatar

    --
    11-18-2009 02:52 PM
    Hello David.

    I finally got my button to work by adding in the URL setting of the button in Indoogrid the following:

    "SQLType=Update"

    I discovered new problem below however while testing:

    I noticed that if I use the link (I tried both $EditLink and $EditLinkURL) created by Form Completion Event (E-mail), it creates a NEW record instead of updating the supposedly linked record.
    ABUser is Offline
    going with the flow
    going with the flow
    Posts:62
    Avatar

    --
    11-19-2009 07:39 AM

    Also, I noticed that the Insert SQL generated by using your Assistance Links doesn't include the field "DynamicForms_ResultsID" ALTHOUGH after clicking on Submit, there is then that field and a number is assigned to it HOWEVER my DSParam1 still doesn't have value even though I put in the JS you asked me to put in the Initial Javascript which is the following:

    $(DSParam1) = $(DynamicForms_ResultsID);

    Why is DSParam1 blank?

    David ToUser is Offline
    river guide
    river guide
    Posts:2719
    Avatar

    --
    11-19-2009 01:43 PM
    Okay, never mind this will not work after looking at your SQL INSERT STATEMENT. You have the column DynamicForms_ResultsID as an auto-identifier so it gets generated by increment of 1. Hence, there's no way to use client side javascript to set DSParam1 to equal to it since the value gets written after form submit (SQL completion event to insert).
    However, this is not necessary anyways.

    In Indoogrid, under View Column Wizard - URL section, set the following:

    Parameter name: DSparam1
    Select column for parameter value: DynamicForms_ResultsID
    URL: http://www.website.com/default.aspx...ype=Update

    or something like that. The URL will have to be mapped to your DF page.

    -- David
    ABUser is Offline
    going with the flow
    going with the flow
    Posts:62
    Avatar

    --
    11-19-2009 02:06 PM
    By the way, I have these settings already on my Indoogrid. If users use a button to edit a particular record in Indoogrid, it works fine even though DSParam1 is blank. After the update however, DSParam1 gets assigned the same value as in DynamicForms_ResultsID.

    My problem now is that if users use the link that's included in the e-mail (Form Completion Event) to edit, it creates a NEW record instead of updating the record linked in the e-mail. I tried both $EditLink and $EditLinkURL but both produced the same result.
    David ToUser is Offline
    river guide
    river guide
    Posts:2719
    Avatar

    --
    11-19-2009 02:11 PM
    What does the $(EditLink) or $(EditLinkURL) show? Can you provide me an example of the actual link value? Another way to reveal this is to enable debug mode on your DF form, fill out the form and hit submit. This will show the EMAIL event and what values are being passed in the actual URL. Can you type in that URL here? I think you also need to append the querystring:

    &SQLUpdate=True&DSParam1=???

    -- David
    ABUser is Offline
    going with the flow
    going with the flow
    Posts:62
    Avatar

    --
    11-19-2009 02:19 PM
    Below is the content of the e-mail generated. I noticed that it's using the UniqueCompletionID (a7c804f9-12e7-43ce-a4af-da64e61fa57d) in the URL. How do I append the text you suggested in $EditLink or $EditLinkURL?

    "mymail@ourcompany.gov"
    11/19/2009 01:25 PM
    Please respond to
    "mymail@ourcompany.gov"

    To
    mymail@ourcompany.gov
    cc

    Subject
    LEAD Application







    Thank you, SuperUser, for your application.

    Please use the link below to edit any of the information on your submitted application.

    http://myserver/About-Us/CommunityR...fault.aspx

    ABUser is Offline
    going with the flow
    going with the flow
    Posts:62
    Avatar

    --
    11-19-2009 02:56 PM
    Okay, David. I figured out to append the text you provided "&SQLUpdate=True&DSParam1=??? " BUT what's the correct syntax for the value to assign to DSParam1? I tried both DSParam1=DynamicForms_ResultsID and DSParam1=$(DynamicForms_ResultsID) but didn't work. The result of the URL is:

    http://dadfsadm00002:8080/About-Us/...ResultsID)
    David ToUser is Offline
    river guide
    river guide
    Posts:2719
    Avatar

    --
    11-20-2009 07:15 AM
    HI, you don't have shortfield name "DynamicForms_ResultsID" on your form. It's an auto-generated SQL column identifier. But in your SQL update statement, you've set DSParam1 = DynamicForms_ResultsID. SO in your EDIT URL link, I believe it should be:

    DSParam1=$(DSParam1)

    Try this out and see if it works for you. On SQL binding, your SQL select statement should include DSParam1, correct? -- David
    ABUser is Offline
    going with the flow
    going with the flow
    Posts:62
    Avatar

    --
    11-20-2009 08:04 AM
    David, it didn't work because as I mentioned in the earlier responses, DSParam1 is blank. And, you mentioned also that it won't work because DynamicForms_ResultsID gets its value ONLY upon submission (initial insert). Here is the result of the URL in the automatic e-mail:

    http://myserver/About-Us/CommunityR...&DSParam1=

    As you can see, DSParam1 in the URL is blank.
    ABUser is Offline
    going with the flow
    going with the flow
    Posts:62
    Avatar

    --
    11-20-2009 08:11 AM
    David, it seems that I have to come up with my own unique identifier instead of using one of your automatic fields. Anyway, how do I do this? What question type do I assign to this auto-generated identifier. In other words, what should be the settings for this field? Thanks.
    David To HostUser is Offline
    going with the flow
    going with the flow
    Posts:54
    Avatar

    --
    11-20-2009 11:01 AM
    Okay, try this:
    1) create another column called MyIndooID of type integer for table "DynamicForms_LEADApplication"
    2) on your DF form, create a hidden field called "MyIndooID"
    3) make it SQL driven:

    select (max(DynamicForm_ResultsID)+ 1) as defaultvalue

    4) use this in your email querystring: DSParam1=$(MyIndooID)

    See if this works for you. -- David


    ABUser is Offline
    going with the flow
    going with the flow
    Posts:62
    Avatar

    --
    11-20-2009 01:58 PM
    Do I need to modify my insert, update, and delete SQLs? Also, do I need to modify what's in the Initial Javascript (Module Configuration). I currently have in there:

    if ($(applOptOfcPickSameSchool))

    { $(applTxtSchoolAssigned) = $(applTxtSchoolByAppl) }

    else

    { $(applTxSchoolAssigned) = ''};

    $(DSParam1) = $(DynamicForms_ResultsID);
    David ToUser is Offline
    river guide
    river guide
    Posts:2719
    Avatar

    --
    11-23-2009 07:04 AM
    I forgot to add, your SQL script should also include a from table clause:

    select (max(DynamicForm_ResultsID)+ 1) as defaultvalue from tablename

    No, you shouldn't have to modify any SQL/java scripts since you are only using this hidden field in in your querystring for email event. -- David
    ABUser is Offline
    going with the flow
    going with the flow
    Posts:62
    Avatar

    --
    11-30-2009 09:59 AM
    Which table of yours is this column in? I checked all the tables automatically generated upon installing your software but can't seem to find it. Thanks.
    David ToUser is Offline
    river guide
    river guide
    Posts:2719
    Avatar

    --
    11-30-2009 10:17 AM
    It's the tablename that you have stored the DynamicForm_ResultsID and used in your Insert SQL statement. -- David
    ABUser is Offline
    going with the flow
    going with the flow
    Posts:62
    Avatar

    --
    12-01-2009 08:59 AM
    David, this was your response in my other Forum:

    11/19/2009 3:43 PM
    Okay, never mind this will not work after looking at your SQL INSERT STATEMENT. You have the column DynamicForms_ResultsID as an auto-identifier so it gets generated by increment of 1. Hence, there's no way to use client side javascript to set DSParam1 to equal to it since the value gets written after form submit (SQL completion event to insert).
    However, this is not necessary anyways.

    In Indoogrid, under View Column Wizard - URL section, set the following:

    Parameter name: DSparam1
    Select column for parameter value: DynamicForms_ResultsID
    URL: http://www.website.com/default.aspx...ype=Update

    or something like that. The URL will have to be mapped to your DF page.

    -- David

    I didn't create the DynamicForm_ResultsID. This is something that your program generates. Because Indoogrid requires an integer to be its unique ID, I had to use DynamicForm_ResultsID INSTEAD of your UniqueCompletionID which is not of Integer type.


    You are not authorized to post a reply.
    Page 1 of 212 > >>


     
     

    Join our mailing list...

    Get current news and events the easy way
     
     
       
    Subscribe Me

    Recent Blogs...

     
    Copyright 2005 - 2011 by Data Springs, Inc.
     
  • film izle
  • 720 izle
  • film
  • sinema izle
  • film makinesi
  • T�rk�e dublaj film
  • film izle
  • film izle
  • baglan film izle
  • sinema izle
  • 1080 film izle
  • film mercegi